HHH-4525 - Trunk is not including the newly added modules to the distribution bundle
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17834 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
ae5984141d
commit
2bd4b91943
|
@ -107,6 +107,21 @@
|
||||||
<artifactId>hibernate-proxool</artifactId>
|
<artifactId>hibernate-proxool</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>hibernate-annotations</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>hibernate-entitymanager</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>hibernate-envers</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- optional deps for bytecode providers since they are optional on core -->
|
<!-- optional deps for bytecode providers since they are optional on core -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -24,9 +24,9 @@
|
||||||
~ Boston, MA 02110-1301 USA
|
~ Boston, MA 02110-1301 USA
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<assembly xmlns="http://maven.apache.org/POM/4.0.0"
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Produces a dist-style bundle similar to what previous (non-mavenized) versions of
|
Produces a dist-style bundle similar to what previous (non-mavenized) versions of
|
||||||
|
@ -105,18 +105,6 @@
|
||||||
|
|
||||||
<dependencySet>
|
<dependencySet>
|
||||||
<outputDirectory>lib/optional/jbosscache</outputDirectory>
|
<outputDirectory>lib/optional/jbosscache</outputDirectory>
|
||||||
<includes>
|
|
||||||
<include>jboss:jboss-cache</include>
|
|
||||||
<include>concurrent:concurrent:1.3.4</include>
|
|
||||||
<include>jboss:jboss-common:4.0.2</include>
|
|
||||||
<include>jboss:jboss-jmx:4.0.2</include>
|
|
||||||
<include>jboss:jboss-system:4.0.2</include>
|
|
||||||
<include>jgroups:jgroups-all:2.2.7</include>
|
|
||||||
</includes>
|
|
||||||
</dependencySet>
|
|
||||||
|
|
||||||
<dependencySet>
|
|
||||||
<outputDirectory>lib/optional/jbosscache2</outputDirectory>
|
|
||||||
<includes>
|
<includes>
|
||||||
<include>org.jboss.cache:jbosscache-core</include>
|
<include>org.jboss.cache:jbosscache-core</include>
|
||||||
</includes>
|
</includes>
|
||||||
|
|
|
@ -25,9 +25,9 @@
|
||||||
~
|
~
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<assembly xmlns="http://maven.apache.org/POM/4.0.0"
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Take the 'core' resoures and build a jar, ala the legacy hibernate3.jar
|
Take the 'core' resoures and build a jar, ala the legacy hibernate3.jar
|
||||||
|
@ -46,6 +46,10 @@
|
||||||
<includes>
|
<includes>
|
||||||
<include>org.hibernate:*</include>
|
<include>org.hibernate:*</include>
|
||||||
</includes>
|
</includes>
|
||||||
|
<excludes>
|
||||||
|
<exclude>org.hibernate:hibernate-tools:*</exclude>
|
||||||
|
<exclude>org.hibernate:jtidy:*</exclude>
|
||||||
|
</excludes>
|
||||||
</dependencySet>
|
</dependencySet>
|
||||||
</dependencySets>
|
</dependencySets>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue