Skip to content

Commit 2f3d365

Browse files
committed
Potential fix for common.jar dependency
1 parent 90185a9 commit 2f3d365

1 file changed

Lines changed: 26 additions & 3 deletions

File tree

pom.xml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,41 @@
66

77
<groupId>com.wurmonline</groupId>
88
<artifactId>WurmModServerApi</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0.0.3</version>
1010
<properties>
1111
<maven.compiler.source>1.8</maven.compiler.source>
1212
<maven.compiler.target>1.8</maven.compiler.target>
1313
</properties>
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<groupId>org.apache.maven.plugins</groupId>
18+
<artifactId>maven-install-plugin</artifactId>
19+
<version>2.5.2</version>
20+
<executions>
21+
<execution>
22+
<id>install:com.oracle:ojdbc6:11g</id>
23+
<phase>validate</phase>
24+
<goals>
25+
<goal>install-file</goal>
26+
</goals>
27+
<configuration>
28+
<file>./lib/common.jar</file>
29+
<groupId>com.wurmonline</groupId>
30+
<artifactId>common</artifactId>
31+
<version>1.0</version>
32+
<packaging>jar</packaging>
33+
</configuration>
34+
</execution>
35+
</executions>
36+
</plugin>
37+
</plugins>
38+
</build>
1439
<dependencies>
1540
<dependency>
1641
<groupId>com.wurmonline</groupId>
1742
<artifactId>common</artifactId>
1843
<version>1.0</version>
19-
<scope>system</scope>
20-
<systemPath>${project.basedir}/lib/common.jar</systemPath>
2144
</dependency>
2245
</dependencies>
2346
</project>

0 commit comments

Comments
 (0)