You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.txt 2.0 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Building Ant with Maven
  2. -----------------------
  3. The Ant jars can be built using Maven and the POMS present in this directory.
  4. Libs not available in the maven repository
  5. groupId artifactId version comment
  6. com.bea weblogic 8.1.3.0 download it
  7. com.bea weblogicclasses 5.1 a newer version can do.
  8. jai jai-core 1.1.2_01 download jai from sun
  9. jai jai-codec 1.1.2.1 download jai from sun
  10. javax.media jmf 2.1.1e dowmload jmf from sun
  11. com.jcraft jsch 0.1.29 download from jcraft
  12. com.ibm.netrexx netrexx 2.0.5 I used the file NetRexxC.jar from the netrexx distribution
  13. com.starteam starteam-sdk 5.2 the original file is called starteam-sdk.jar
  14. stylebook stylebook 1.0-b2 the original file is called stylebook-1.0-b2.jar
  15. to install a jar file into your local Maven cache, do this
  16. mvn install:install-file -DgroupId=foo.org -DartifactId=xx -Dversion=x.y -Dpackaging=jar -Dfile=/a/b/foo.jar
  17. HOW TO BUILD :
  18. from this directory, type
  19. mvn install (or mvn package)
  20. If you do not have all the dependencies, you can remove the modules that you will not be able to build
  21. from the pom.xml in this directory.
  22. You also might want to disable the tests.
  23. mvn install -Dmaven.test.skip=true
  24. TODO :
  25. * see if the dependency to weblogicclasses.jar can be replaced by a dependency to some j2ee.jar from Sun,
  26. as it supplies some javax.ejb classes which are required at compile time.
  27. PROBLEMS :
  28. * the unit tests cannot run properly, the maven-surefire-plugin sets a system property basedir
  29. which make a large part of our tests fail
  30. * JIRA issue http://jira.codehaus.org/browse/MSUREFIRE-177 asking the Maven colleagues to fix this. :-)
  31. REFERENCES :
  32. about skipping tests :
  33. http://maven.apache.org/plugins/maven-surefire-plugin/examples/skipping-test.html
  34. upload request for jsch-0.1.29
  35. http://jira.codehaus.org/browse/MAVENUPLOAD-1197