Author: rareddy
Date: 2010-06-04 15:15:22 -0400 (Fri, 04 Jun 2010)
New Revision: 2176
Modified:
trunk/hibernate-dialect/pom.xml
trunk/jboss-integration/pom.xml
trunk/pom.xml
Log:
TEIID-1050: Upgrading the Maven repository to new JBoss's Nexus repo. The 3.2.3
version of the Hibernate was not available in the nexus, so I upgraded to 3.5.2. The most
notable improvement is now developers can publish to snapshot repos and also sources are
also deployed.
Modified: trunk/hibernate-dialect/pom.xml
===================================================================
--- trunk/hibernate-dialect/pom.xml 2010-06-03 23:05:59 UTC (rev 2175)
+++ trunk/hibernate-dialect/pom.xml 2010-06-04 19:15:22 UTC (rev 2176)
@@ -11,9 +11,9 @@
<description>Teiid Hibernate Dialect</description>
<dependencies>
<dependency>
- <groupId>hibernate</groupId>
- <artifactId>hibernate3</artifactId>
- <version>3.2.3.GA</version>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>3.5.2-Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: trunk/jboss-integration/pom.xml
===================================================================
--- trunk/jboss-integration/pom.xml 2010-06-03 23:05:59 UTC (rev 2175)
+++ trunk/jboss-integration/pom.xml 2010-06-04 19:15:22 UTC (rev 2176)
@@ -80,14 +80,15 @@
<version>5.0.3.GA</version>
<scope>test</scope>
</dependency>
-
+<!--
<dependency>
<groupId>org.jboss.aop</groupId>
<artifactId>jboss-aop</artifactId>
<classifier>client</classifier>
<version>2.1.1.GA</version>
<scope>test</scope>
- </dependency>
+ </dependency>
+-->
<dependency>
<groupId>org.jboss.remoting</groupId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-06-03 23:05:59 UTC (rev 2175)
+++ trunk/pom.xml 2010-06-04 19:15:22 UTC (rev 2176)
@@ -13,6 +13,7 @@
<
site.url>http://www.jboss.org/teiid</site.url>
</properties>
<scm>
+
<
connection>scm:svn:https://anonsvn.jboss.org/repos/teiid/trunk</con...
<
developerConnection>scm:svn:https://svn.jboss.org/repos/teiid/trunk<...
</scm>
<licenses>
@@ -172,11 +173,23 @@
</archive>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
- </plugin>
+ </plugin>
</plugins>
</build>
<reporting>
@@ -194,13 +207,10 @@
</reporting>
<repositories>
<repository>
- <id>jboss</id>
- <
url>http://repository.jboss.com/maven2/</url>
+ <id>jboss-public-repository</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <
url>http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
- <repository>
- <id>jboss-snapshot</id>
- <
url>http://snapshots.jboss.org/maven2</url>
- </repository>
</repositories>
<dependencies>
<dependency>
@@ -490,10 +500,16 @@
<module>jboss-integration</module>
<module>test-integration</module>
</modules>
- <distributionManagement>
- <repository>
- <id>repository.jboss.org</id>
- <url>${jboss.repository.root}</url>
- </repository>
- </distributionManagement>
+ <distributionManagement>
+ <repository>
+ <id>jboss-releases-repository</id>
+ <name>JBoss Releases Repository</name>
+
<
url>https://repository.jboss.org/nexus/service/local/staging/deploy/ma...
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshots Repository</name>
+
<
url>https://repository.jboss.org/nexus/content/repositories/snapshots/...
+ </snapshotRepository>
+ </distributionManagement>
</project>