tree: 62e2f71130c4eaa0ace06134dbb5669e7af6bdba [path history] [tgz]
  1. icons/
  2. lib/
  3. META-INF/
  4. resources/
  5. schema/
  6. src/
  7. .classpath
  8. .cvsignore
  9. .gitignore
  10. .project
  11. about.html
  12. apiRefactoring-notes.txt
  13. artifactLifecycle.html
  14. build.properties
  15. plugin.xml
  16. pom.xml
  17. projectAPI-notes.txt
  18. README.md
  19. refactoring.html
plugins/org.eclipse.tigerstripe.workbench.base/README.md

Working with this project in Eclipse

This project will report errors when imported into Eclipse because of missing tigerstripe-api.jar and tigerstripe-core.jar. You must build this project once locally with Maven for these files to be copied into this projects /lib folder and for the project errors to go away. These two files are marked in this projects .gitignore to avoid new versions being re-committed to SCM with every commit, hence they will be missing on a fresh checkout.

  • Build once with mvn clean install or similar, the dependencies jars are copied by maven-dependency-plugin during the generate-resources phase.
  • If you make changes to tigerstripe-api or tigerstripe-core projects, you must rebuild them with Maven (i.e. mvn clean install) and re-run this project build for those new JARS to be copied into this projects /lib folder.

The main aggregator POM builds all these projects together to ensure that latest tigerstripe-api and tigerstripe-core are built and copied into this project before it is packaged and before its tests are executed.