mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-21 21:57:56 +01:00
Some maven no distrubuted libraries are part of the project in order to simplify installation.
This commit is contained in:
parent
75470a91fd
commit
b3b71db425
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
*/target
|
||||
*/*.iml
|
||||
wisemapping.ipr
|
||||
wisemapping.iws
|
||||
wisemapping.iml
|
BIN
libraries/com.jhlabs/jars/imaging-01012005.jar
Normal file
BIN
libraries/com.jhlabs/jars/imaging-01012005.jar
Normal file
Binary file not shown.
BIN
libraries/com.octo/jars/jcaptcha-1.0.jar
Normal file
BIN
libraries/com.octo/jars/jcaptcha-1.0.jar
Normal file
Binary file not shown.
BIN
libraries/javax.transaction/jars/jta-1.0.1B.jar
Normal file
BIN
libraries/javax.transaction/jars/jta-1.0.1B.jar
Normal file
Binary file not shown.
14
libraries/javax.transaction/pom/jta-1.0.1B.pom
Normal file
14
libraries/javax.transaction/pom/jta-1.0.1B.pom
Normal file
@ -0,0 +1,14 @@
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>javax.transaction</groupId>
|
||||
<artifactId>jta</artifactId>
|
||||
<version>1.0.1B</version>
|
||||
<name>Java Transaction API</name>
|
||||
<description>
|
||||
The javax.transaction package. It is appropriate for inclusion in a classpath, and may be added to a Java 2 installation.
|
||||
</description>
|
||||
<url>http://java.sun.com/products/jta</url>
|
||||
<distributionManagement>
|
||||
<downloadUrl>http://java.sun.com/products/jta</downloadUrl>
|
||||
</distributionManagement>
|
||||
</project>
|
3
pom.xml
3
pom.xml
@ -19,14 +19,13 @@
|
||||
</licenses>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>maven2-repository.dev.java.net</id>
|
||||
<name>Java.net Maven 2 Repository</name>
|
||||
<url>http://download.java.net/maven/2</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
|
||||
<organization>
|
||||
<name>WiseMapping</name>
|
||||
<url>http://www.wisemapping.com</url>
|
||||
|
@ -12,6 +12,15 @@
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<layout>legacy</layout>
|
||||
<id>local-dependecies</id>
|
||||
<name>local-dependecies</name>
|
||||
<url>file://${basedir}/../libraries</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.wisemapping</groupId>
|
||||
@ -68,6 +77,24 @@
|
||||
<version>2.5.6</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.transaction</groupId>
|
||||
<artifactId>jta</artifactId>
|
||||
<version>1.0.1B</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.jhlabs</groupId>
|
||||
<artifactId>imaging</artifactId>
|
||||
<version>01012005</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.octo.captcha</groupId>
|
||||
<artifactId>jcaptcha</artifactId>
|
||||
<version>1.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jdbc</artifactId>
|
||||
@ -316,7 +343,7 @@
|
||||
|
||||
<plugin>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<configuration>
|
||||
<configuration>
|
||||
<warName>wisemapping</warName>
|
||||
<overlays>
|
||||
<overlay>
|
||||
|
Loading…
Reference in New Issue
Block a user