Wiki source code of Data Model Generator + Utils Home
Version 3.1 by 5fbc055b7cc103006957e1ae on 2012-08-10 05.26:53
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
2.1 | 1 | DMGen started as Data Model Generator, Java code and a Maven plugin to generate POJO clazzes and the like for a data model specified as XML file. |
| |
1.1 | 2 | |
| |
2.1 | 3 | With additional functions to allow an application to i.e. perform schema update operations it has grown into what's now rather called DMUtils. |
| 4 | |||
| 5 | ===== {{id name="DataModelGenerator+UtilsHome-Repositories:"/}}Repositories: ===== | ||
| 6 | |||
| |
3.1 | 7 | The subversion repository can be found here: |
| |
2.1 | 8 | |
| |
3.1 | 9 | {{code language="none"}} |
| 10 | https://svn.clazzes.org/svn/dmgen. | ||
| 11 | {{/code}} | ||
| |
2.1 | 12 | |
| |
3.1 | 13 | To use the Project with maven add the following to your {{code language="none"}}pom.xml{{/code}} file: |
| 14 | |||
| |
2.1 | 15 | {{code language="none"}} |
| 16 | <repository> | ||
| 17 | <id>clazzes.org</id> | ||
| 18 | <url>http://mvn.clazzes.org/</url> | ||
| 19 | </repository> | ||
| 20 | ... | ||
| 21 | <dependency> | ||
| 22 | <groupId>org.clazzes.dmgen</groupId> | ||
| 23 | <artifactId>dmutils.api</artifactId> | ||
| 24 | <version>0.1.0-SNAPSHOT</version> | ||
| 25 | </dependency> | ||
| 26 | <dependency> | ||
| 27 | <groupId>org.clazzes.dmgen</groupId> | ||
| 28 | <artifactId>dmutils.impl</artifactId> | ||
| 29 | <version>0.1.0-SNAPSHOT</version> | ||
| 30 | </dependency> | ||
| 31 | {{/code}} |