forked from hibernate/hibernate-orm
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
101 lines (93 loc) · 3.32 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0"?>
<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>
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<version>3.6.3.Final-appian-1.5</version>
<relativePath>hibernate-parent/pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<packaging>pom</packaging>
<name>Hibernate Core Aggregator</name>
<description>Aggregator of the Hibernate Core modules.</description>
<properties>
<!-- Skip artifact deployment -->
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<modules>
<module>hibernate-parent</module>
<module>hibernate-core</module>
<module>hibernate-testing</module>
<module>hibernate-testsuite</module>
<module>hibernate-ehcache</module>
<module>hibernate-jbosscache</module>
<module>hibernate-oscache</module>
<module>hibernate-swarmcache</module>
<module>hibernate-c3p0</module>
<module>hibernate-proxool</module>
<module>hibernate-envers</module>
<module>hibernate-jdbc3-testing</module>
<module>hibernate-infinispan</module>
<!--
Need to scope bytecode providers first...
<module>bytecode-cglib</module>
<module>bytecode-javassist</module>
-->
</modules>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
<!--
<configuration>
<stylesheetfile>src/main/javadoc/hibernate-javadoc.css</stylesheetfile>
</configuration>
-->
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>jdk6-modules</id>
<activation>
<property>
<name>disableJDK6Modules</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>hibernate-entitymanager</module>
<module>hibernate-jdbc4-testing</module>
</modules>
</profile>
<profile>
<id>docs</id>
<activation>
<property>
<name>disableDistribution</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>hibernate-distribution</module>
</modules>
</profile>
</profiles>
</project>