From: Debayan Sutradhar Date: Sun, 07 Feb 2021 14:42:08 +0530 Subject: Merge pull request #35 from abhinayagarwal/changes --- Merge pull request #35 from abhinayagarwal/changes Miscellaneous changes --- --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: Build +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup Java 11 + uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Verify project + run: mvn clean verify + +# TODO: Deploy Snapshots --- 'a/.gitignore' +++ b/.gitignore @@ -1,11 +1,18 @@ +# Maven target/ + +# IntelliJ IDEA .idea/ -streampi.log -streampi.log.lck -gen/ -data/ +*.iml +# Eclipse .settings/ .project .factorypath .classpath + +# Misc +streampi.log +streampi.log.lck +gen/ +data/ \ No newline at end of file --- 'a/pom.xml' +++ b/pom.xml @@ -4,79 +4,61 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.stream_pi + com.stream-pi client - 1.0.0 + 1.0.0-SNAPSHOT https://stream-pi.com/ UTF-8 - 11 - 11 - + 11 + 16-ea+6 0.1.36 + 11.5.0 - 16-ea+6 - - 11.5.0 - 11.5.0 - - 1.0.0 - 1.0.0 - 1.0.0 - - com.stream_pi.client.Main + 1.0.0-SNAPSHOT + 1.0.0-SNAPSHOT + 1.0.0-SNAPSHOT + com.StreamPi.Client.Main /path/to/sdk - - org.openjfx javafx-controls - ${JavaFXVersion} + ${javafx.version} - org.openjfx - javafx-base - ${JavaFXVersion} - - - - org.kordamp.ikonli ikonli-fontawesome5-pack - ${IkonliFA5PackVersion} + ${ikonli.version} - org.kordamp.ikonli ikonli-javafx - ${IkonliVersion} + ${ikonli.version} - com.stream_pi - actionapi - ${ActionAPIVersion} + com.stream-pi + action-api + ${action.api.version} - - com.stream_pi - themeapi - ${ThemeAPIVersion} + com.stream-pi + theme-api + ${theme.api.version} - com.stream_pi util - ${UtilVersion} + ${util.version} @@ -84,7 +66,6 @@ lifecycle 4.0.10 - com.gluonhq.attach util @@ -92,8 +73,6 @@ - - gluon-releases @@ -107,9 +86,6 @@ org.apache.maven.plugins maven-compiler-plugin 3.8.1 - - 11 - @@ -121,7 +97,7 @@ 2 true true - ${MainClassName} + ${main.class.name} @@ -145,7 +121,7 @@ java.util.logging.FileHandler - ${MainClassName} + ${main.class.name} @@ -156,8 +132,6 @@ true - -