Author: tschoening Date: Sun Apr 13 17:51:12 2014 New Revision: 1587060 URL: http://svn.apache.org/r1587060 Log: LOGCXX-421: Added an example for using cpptasks in a local repo, which is necessary to later be able to test my customized version.
Added: incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/install_plugin_repo.cmd Modified: incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/pom.xml Added: incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/install_plugin_repo.cmd URL: http://svn.apache.org/viewvc/incubator/log4cxx/branches/LOGCXX-421%20fixed%20cpptasks/install_plugin_repo.cmd?rev=1587060&view=auto ============================================================================== --- incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/install_plugin_repo.cmd (added) +++ incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/install_plugin_repo.cmd Sun Apr 13 17:51:12 2014 @@ -0,0 +1 @@ +mvn install:install-file -DlocalRepositoryPath=plugin-repo -DcreateChecksum=true -Dpackaging=jar "-Dfile=C:/Users/tschoening/Documents/Eclipse/Java/Ant Contrib cppTasks/target/cpptasks-1.0b6-SNAPSHOT.jar" -DgroupId=ant-contrib -DartifactId=cpptasks -Dversion=1.0b6 \ No newline at end of file Modified: incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/pom.xml URL: http://svn.apache.org/viewvc/incubator/log4cxx/branches/LOGCXX-421%20fixed%20cpptasks/pom.xml?rev=1587060&r1=1587059&r2=1587060&view=diff ============================================================================== --- incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/pom.xml (original) +++ incubator/log4cxx/branches/LOGCXX-421 fixed cpptasks/pom.xml Sun Apr 13 17:51:12 2014 @@ -156,6 +156,20 @@ </contributor> </contributors> + <repositories> + <repository> + <id>repo</id> + <url>file:///${project.basedir}/repo</url> + </repository> + </repositories> + + <pluginRepositories> + <pluginRepository> + <id>plugin-repo</id> + <url>file:///${project.basedir}/plugin-repo</url> + </pluginRepository> + </pluginRepositories> + <build> <plugins> <plugin> @@ -261,7 +275,12 @@ <dependency> <groupId>ant-contrib</groupId> <artifactId>cpptasks</artifactId> - <version>1.0b5</version> + <version>1.0b6</version> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + <version>2.8.1</version> </dependency> </dependencies> </plugin>