mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
No need to install jar to local repository anymore. jar has system scope in dependencies now.
This commit is contained in:
parent
4452888ffe
commit
1d1ce3b55d
7 changed files with 20 additions and 10 deletions
|
@ -1,2 +0,0 @@
|
|||
rem installs 3d party libs to local repository
|
||||
mvn install:install-file -Dfile=plugins/core/jspf.core-0.9.0.jar -DgroupId=org.plugins.jspf -DartifactId=jspf-core -Dversion=0.9.1 -Dpackaging=jar -DgeneratePom=true -DcreateChecksum=true
|
|
@ -1,2 +0,0 @@
|
|||
# installs 3d party libs to local repository
|
||||
mvn install:install-file -Dfile=plugins/core/jspf.core-0.9.0.jar -DgroupId=org.plugins.jspf -DartifactId=jspf-core -Dversion=0.9.1 -Dpackaging=jar -DgeneratePom=true -DcreateChecksum=true
|
|
@ -6,13 +6,13 @@
|
|||
<parent>
|
||||
<groupId>org.mage</groupId>
|
||||
<artifactId>mage-root</artifactId>
|
||||
<version>0.3</version>
|
||||
<version>${mage-version}</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.mage</groupId>
|
||||
<artifactId>Mage-Client</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>0.3</version>
|
||||
<version>${mage-version}</version>
|
||||
<name>Mage Client</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
|
||||
|
@ -36,6 +36,8 @@
|
|||
<groupId>org.plugins.jspf</groupId>
|
||||
<artifactId>jspf-core</artifactId>
|
||||
<version>${jspf-version}</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${basedir}/plugins/core/jspf.core-0.9.0.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
@ -86,7 +88,6 @@
|
|||
</build>
|
||||
|
||||
<properties>
|
||||
<mage-version>0.3</mage-version>
|
||||
<jspf-version>0.9.1</jspf-version>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
|
@ -6,13 +6,13 @@
|
|||
<parent>
|
||||
<groupId>org.mage</groupId>
|
||||
<artifactId>mage-root</artifactId>
|
||||
<version>0.3</version>
|
||||
<version>${mage-version}</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.mage</groupId>
|
||||
<artifactId>Mage-Common</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>0.3</version>
|
||||
<version>${mage-version}</version>
|
||||
<name>Mage Common Classes</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
|
||||
|
@ -26,6 +26,8 @@
|
|||
<groupId>org.plugins.jspf</groupId>
|
||||
<artifactId>jspf-core</artifactId>
|
||||
<version>${jspf-version}</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${basedir}/../Mage.Client/plugins/core/jspf.core-0.9.0.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
@ -54,7 +56,6 @@
|
|||
</build>
|
||||
|
||||
<properties>
|
||||
<mage-version>0.3</mage-version>
|
||||
<jspf-version>0.9.1</jspf-version>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
<groupId>org.plugins.jspf</groupId>
|
||||
<artifactId>jspf-core</artifactId>
|
||||
<version>${jspf-version}</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${basedir}/../../Mage.Client/plugins/core/jspf.core-0.9.0.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
<groupId>org.plugins.jspf</groupId>
|
||||
<artifactId>jspf-core</artifactId>
|
||||
<version>${jspf-version}</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${basedir}/../../Mage.Client/plugins/core/jspf.core-0.9.0.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
|
|
|
@ -37,6 +37,14 @@
|
|||
<artifactId>jaxb-impl</artifactId>
|
||||
<version>2.1.12</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.14</version>
|
||||
<type>jar</type>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<pluginRepositories>
|
||||
|
|
Loading…
Reference in a new issue