From: <id...@us...> - 2006-05-15 16:35:36
|
Revision: 25 Author: idueppe Date: 2006-05-15 09:35:28 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=25&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/.project trunk/openuss/build.xml trunk/openuss/pom.xml Modified: trunk/openuss/.project =================================================================== --- trunk/openuss/.project 2006-05-15 16:35:14 UTC (rev 24) +++ trunk/openuss/.project 2006-05-15 16:35:28 UTC (rev 25) @@ -5,13 +5,7 @@ <projects> </projects> <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> </buildSpec> <natures> - <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> Modified: trunk/openuss/build.xml =================================================================== --- trunk/openuss/build.xml 2006-05-15 16:35:14 UTC (rev 24) +++ trunk/openuss/build.xml 2006-05-15 16:35:28 UTC (rev 25) @@ -21,8 +21,8 @@ </target> <target name="eclipse"> <exec executable="mvn.bat"> - <arg line="eclipse:eclipse"/> - <arg line="-Declipse.downloadSources=true"/> + <arg line="eclipse:clean eclipse:eclipse"/> + <arg line="-DdownloadSources=true"/> </exec> </target> <target name="copy-profiles"> Modified: trunk/openuss/pom.xml =================================================================== --- trunk/openuss/pom.xml 2006-05-15 16:35:14 UTC (rev 24) +++ trunk/openuss/pom.xml 2006-05-15 16:35:28 UTC (rev 25) @@ -15,8 +15,8 @@ <name>OpenUSS</name> <url>http://openuss.sourceforge.net</url> </organization> - + <developers> <developer> <id>idueppe</id> @@ -33,11 +33,17 @@ </developer> </developers> - <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss</developerConnection> - <url>http://svn.sourceforge.net/viewcvs.cgi/openuss/trunk/openuss/</url> - </scm> + <scm> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss + </connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss + </developerConnection> + <url> + http://svn.sourceforge.net/viewcvs.cgi/openuss/trunk/openuss/ + </url> + </scm> <modules> <module>foundation</module> @@ -45,7 +51,64 @@ <dependencyManagement> <dependencies> + + <!-- OpenUSS Runtime Dependencies --> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>[1.7.0,)</version> + </dependency> + + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate</artifactId> + <version>[3.1.2,)</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>[2.1,)</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring</artifactId> + <version>[2.0-m1,)</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-hibernate3</artifactId> + <version>[2.0-m1,)</version> + <exclusions> + <exclusion> + <groupId>javax.persistence</groupId> + <artifactId>ejb</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>jaybird</groupId> + <artifactId>jaybird-full</artifactId> + <scope>test</scope> + <version>[2.0.1,)</version> + </dependency> + <dependency> + <groupId>opensymphony</groupId> + <artifactId>oscache</artifactId> + <scope>test</scope> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-mock</artifactId> + <scope>test</scope> + <version>2.0-m1</version> + </dependency> + + + <!-- AndroMDA Dependencies --> + <dependency> <groupId>org.andromda.profiles.uml14</groupId> <artifactId>andromda-profile</artifactId> <version>3.2-RC1-SNAPSHOT</version> @@ -115,6 +178,8 @@ <version>3.2-RC1-SNAPSHOT</version> <scope>runtime</scope> </dependency> + + </dependencies> </dependencyManagement> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |