Skip to content

Commit

Permalink
Use released plugin dependency to avoid having to build them again
Browse files Browse the repository at this point in the history
As far as I can see, each native dependency must be build on the
respective platform and can thus not be build by jitpack
  • Loading branch information
g3force committed Jul 21, 2018
1 parent 3ffff3c commit 1cf0c94
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions uberjar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<relativePath>../</relativePath>
</parent>

<properties>
<plugins.version>2.0.9</plugins.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand All @@ -20,46 +24,46 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>windows-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
<classifier>natives-windows</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>osx-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
<classifier>natives-osx</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wintab-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
<classifier>natives-wintab</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>linux-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
<classifier>natives-linux</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>windows-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>osx-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wintab-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>linux-plugin</artifactId>
<version>${project.version}</version>
<version>${plugins.version}</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 1cf0c94

Please sign in to comment.