Created
August 15, 2012 16:27
-
-
Save gamlerhart/3361392 to your computer and use it in GitHub Desktop.
Versant-Maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set LIB_PATH=%VERSANT_ROOT%/lib | |
mvn install:install-file -DgroupId=com.versant -DartifactId=versant-jpa-enhancer -Dpackaging=jar -Dversion=8.0-SNAPSHOT -Dfile=%LIB_PATH%/vodjpa.jar -DpomFile=./pom-versant-jpa-enhancer.xml | |
mvn install:install-file -DgroupId=com.versant -DartifactId=versant-jpa -Dpackaging=jar -Dversion=8.0-SNAPSHOT -Dfile=%LIB_PATH%/vodjpa.jar -DpomFile=./pom-versant-jpa.xml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.versant</groupId> | |
<artifactId>versant-jpa-enhancer</artifactId> | |
<version>8.0-SNAPSHOT</version> | |
<description>Versant JPA provider</description> | |
<dependencies> | |
<dependency> | |
<groupId>com.versant</groupId> | |
<artifactId>versant-jpa</artifactId> | |
<version>8.0-SNAPSHOT</version> | |
</dependency> | |
</dependencies> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.versant</groupId> | |
<artifactId>versant-jpa</artifactId> | |
<version>8.0-SNAPSHOT</version> | |
<description>Versant JPA provider</description> | |
<dependencies> | |
<dependency> | |
<groupId>org.hibernate.javax.persistence</groupId> | |
<artifactId>hibernate-jpa-2.0-api</artifactId> | |
<version>1.0.1.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.ow2.asm</groupId> | |
<artifactId>asm-all</artifactId> | |
<version>4.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.antlr</groupId> | |
<artifactId>antlr-runtime</artifactId> | |
<version>3.3</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.transaction</groupId> | |
<artifactId>jta</artifactId> | |
<version>1.1</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment