-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
85 lines (83 loc) · 2.68 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.dcm4che.jdbc.prefs</groupId>
<artifactId>dcm4che-jdbc-prefs</artifactId>
<version>1.1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>dcm4che-jdbc-prefs</name>
<properties>
<hibernate.version>4.1.3.Final</hibernate.version>
<jpa.version>1.0.1.Final</jpa.version>
<hbm2ddl.auto>validate</hbm2ddl.auto>
<show_sql>false</show_sql>
<log4j.version>1.2.16</log4j.version>
<db>oracle</db>
<ds>java:jboss/datasources/DicomPreferencesDS</ds>
<dcm4che.version>3.3.4</dcm4che.version>
<skipTests>true</skipTests>
</properties>
<profiles>
<profile>
<id>asb</id>
<properties>
<db>oracle-asb</db>
<ds>java:jboss/datasources/OracleDS</ds>
</properties>
</profile>
</profiles>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.4</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>www.dcm4che.org</id>
<name>dcm4che Repository</name>
<url>http://www.dcm4che.org/maven2</url>
</pluginRepository>
</pluginRepositories>
<modules>
<module>dcm4che-jdbc-prefs-ejb</module>
<module>dcm4che-jdbc-prefs-tool</module>
</modules>
<distributionManagement>
<repository>
<id>www.dcm4che.org</id>
<name>dcm4che Repository</name>
<url>scp://www.dcm4che.org:443/home/maven2</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/dcm4che/dcm4che-jdbc-prefs.git</connection>
<developerConnection>scm:git:https://github.com/dcm4che/dcm4che-jdbc-prefs.git</developerConnection>
<url>https://github.com/dcm4che/dcm4che-jdbc-prefs</url>
<tag>HEAD</tag>
</scm>
</project>