https://github.com/cometd/dojo-maven
Maven packaging of the dojo toolkit
https://github.com/cometd/dojo-maven
Last synced: 5 months ago
JSON representation
Maven packaging of the dojo toolkit
- Host: GitHub
- URL: https://github.com/cometd/dojo-maven
- Owner: cometd
- Created: 2013-09-19T04:59:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T17:53:46.000Z (over 3 years ago)
- Last Synced: 2024-05-03T15:25:00.470Z (almost 2 years ago)
- Language: Java
- Size: 170 KB
- Stars: 3
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
- awesome-dojo - Dojo Maven - Maven packaging of the Dojo Toolkit (Serverside integrations)
README
Maven build for Dojo Toolkit
maven - The parent pom module with licenses, versions etc.
maven/dojo - calls out to shrinksafe to build the standard dojo release
bundles as zip, tar.gz and tar.bz2
maven/java - The parent pom for java dojo utilities
maven/java/dojo - Packages dojo as a java Webapp.
Maven projects will be able to use the zip, tar and/or war
maven artifacts as dependencies and include them in their
webapps as resources or templates.
Currently there is no public dojo repository. So artifacts
are only installed to your local maven repository. So maven
projects will need build this locally. Eventually the artifacts
will be published.
The artifacts are also available at:
./dojo/target/dojo-1.1-SNAPSHOT.tar.gz
./dojo/target/dojo-1.1-SNAPSHOT.tar.bz2
./dojo/target/dojo-1.1-SNAPSHOT.zip
./java/dojo/target/dojo-1.1-SNAPSHOT.war
To build everything:
mvn
To re build the war file
mvn -f java/dojo/pom.xml
or
cd java/dojo
mvn
To run a jetty server with the war
mvn -f java/dojo/pom.xml jetty:run-war
or
cd java/dojo
mvn jetty:run-war
Dojo is then available on port 8080