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 1.7 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 fetch.xml
  9. jai jai-codec 1.1.2.1 fetch.xml
  10. com.ibm.netrexx netrexx 2.0.5 fetch.xml
  11. com.starteam starteam-sdk 5.2 the original file is called starteam-sdk.jar
  12. stylebook stylebook 1.0-b2 the original file is called stylebook-1.0-b2.jar
  13. to install a jar file into your local Maven cache, do this
  14. mvn install:install-file -DgroupId=foo.org -DartifactId=xx -Dversion=x.y -Dpackaging=jar -Dfile=/a/b/foo.jar
  15. HOW TO BUILD :
  16. from this directory, type
  17. mvn install (or mvn package)
  18. If you do not have all the dependencies, you can remove the modules that you will not be able to build
  19. from the pom.xml in this directory.
  20. You also might want to disable the tests.
  21. mvn install -Dmaven.test.skip=true
  22. TODO :
  23. * see if the dependency to weblogicclasses.jar can be replaced by a dependency to some j2ee.jar from Sun,
  24. as it supplies some javax.ejb classes which are required at compile time.
  25. PROBLEMS :
  26. * the unit tests cannot run properly, the maven-surefire-plugin sets a system property basedir
  27. which make a large part of our tests fail
  28. * JIRA issue https://issues.apache.org/jira/browse/SUREFIRE-184 asking the Maven colleagues to fix this. :-)
  29. REFERENCES :
  30. about skipping tests :
  31. https://maven.apache.org/plugins/maven-surefire-plugin/examples/skipping-test.html