Skip to content

Commit

Permalink
Fixed compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
Numzskull committed Feb 14, 2021
1 parent 31d9c6b commit e0edeb5
Showing 1 changed file with 45 additions and 4 deletions.
49 changes: 45 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,47 @@
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-attach</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/lib/attach-1.7.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>com.sun</groupId>
<artifactId>attach</artifactId>
<version>1.7</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>

<execution>
<id>install-weblaf</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/lib/weblaf-complete-1.29-fixed.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>com.weblaf</groupId>
<artifactId>weblaf</artifactId>
<version>1.2.9</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -155,8 +196,8 @@
<groupId>com.weblaf</groupId>
<artifactId>weblaf</artifactId>
<version>1.2.9</version>
<systemPath>${basedir}/lib/weblaf-complete-1.29-fixed.jar</systemPath>
<scope>system</scope>
<!-- <systemPath>${basedir}/lib/weblaf-complete-1.29-fixed.jar</systemPath>-->
<!-- <scope>system</scope>-->
</dependency>
<dependency>
<groupId>com.formdev</groupId>
Expand All @@ -172,8 +213,8 @@
<groupId>com.sun</groupId>
<artifactId>attach</artifactId>
<version>1.7</version>
<systemPath>${basedir}/lib/attach-1.7.jar</systemPath>
<scope>system</scope>
<!-- <systemPath>${basedir}/lib/attach-1.7.jar</systemPath>-->
<!-- <scope>system</scope>-->
</dependency>
<dependency>
<groupId>commons-cli</groupId>
Expand Down

0 comments on commit e0edeb5

Please sign in to comment.