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:
Steve Ebersole 2009-10-25 19:11:38 +00:00
parent ae5984141d
commit 2bd4b91943
3 changed files with 23 additions and 16 deletions

View File

@ -107,6 +107,21 @@
<artifactId>hibernate-proxool</artifactId>
<version>${project.version}</version>
</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 -->
<dependency>

View File

@ -24,9 +24,9 @@
~ 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"
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
@ -105,18 +105,6 @@
<dependencySet>
<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>
<include>org.jboss.cache:jbosscache-core</include>
</includes>

View File

@ -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"
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
@ -46,6 +46,10 @@
<includes>
<include>org.hibernate:*</include>
</includes>
<excludes>
<exclude>org.hibernate:hibernate-tools:*</exclude>
<exclude>org.hibernate:jtidy:*</exclude>
</excludes>
</dependencySet>
</dependencySets>