diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2013-07-16 14:05:53 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2013-07-16 14:05:53 +0200 |
commit | 5c345b6a0cd34a8c853aa274b081e70589b44da3 (patch) | |
tree | c7b97b8457f14bbd745301fbcffde5a32657f811 /id/server/moa-id-commons/pom.xml | |
parent | f0ce9aa935c948693bfabf2bdb598ec9df40471d (diff) | |
download | moa-id-spss-5c345b6a0cd34a8c853aa274b081e70589b44da3.tar.gz moa-id-spss-5c345b6a0cd34a8c853aa274b081e70589b44da3.tar.bz2 moa-id-spss-5c345b6a0cd34a8c853aa274b081e70589b44da3.zip |
create DB Config and legacy config parser
Split MOASession database from config database
Diffstat (limited to 'id/server/moa-id-commons/pom.xml')
-rw-r--r-- | id/server/moa-id-commons/pom.xml | 58 |
1 files changed, 46 insertions, 12 deletions
diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index e2189372b..540bd7b89 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -16,6 +16,17 @@ <version>4.2.1.Final</version> </dependency> <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-c3p0</artifactId> + <version>4.2.1.Final</version> + </dependency> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-entitymanager</artifactId> + <version>4.2.1.Final</version> + </dependency> + + <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> @@ -25,17 +36,19 @@ <artifactId>moa-common</artifactId> <type>jar</type> </dependency> - <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate-c3p0</artifactId> - <version>4.2.1.Final</version> - </dependency> - + + <!-- dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-xjc</artifactId> + <version>2.2.7</version> + </dependency --> + <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> - <version>1.0.0.Final</version> + <version>1.0.1.Final</version> </dependency> + <dependency> <groupId>org.jvnet.hyperjaxb3</groupId> <artifactId>hyperjaxb3-ejb-runtime</artifactId> @@ -50,7 +63,24 @@ </dependencies> <build> - <plugins> + <defaultGoal>install</defaultGoal> + + <resources> + <resource> + <directory>src/main/resources/config</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + <resource> + <directory>target/generated-sources/xjc</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + </resources> + + <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -76,14 +106,13 @@ </execution> </executions> </plugin> - + <plugin> <groupId>org.jvnet.hyperjaxb3</groupId> <artifactId>maven-hyperjaxb3-plugin</artifactId> <version>0.5.6</version> <executions> <execution> - <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> @@ -91,8 +120,13 @@ </executions> <configuration> <extension>true</extension> - <roundtripTestClassName>RoundtripTest</roundtripTestClassName> - </configuration> + <schemaDirectory>src/main/resources/config</schemaDirectory> + <bindingDirectory>src/main/resources/config</bindingDirectory> + <!-- persistenceXml>src/main/resources/config/persistence_template.xml</persistenceXml--> + <generatePackage>at.gv.egovernment.moa.id.commons.db.dao.config</generatePackage> + + <!-- roundtripTestClassName>RoundtripTest</roundtripTestClassName --> + </configuration> </plugin> <plugin> <inherited>true</inherited> |