diff options
author | Evgeniy Tsvigun <[email protected]> | 2010-09-13 04:29:35 +0400 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-18 01:09:23 +0100 |
commit | 8e2ab5b4c4e84e5c14ed4570ea8050c8e1dc3c5b (patch) | |
tree | e55ec59e9a50e161629089fa0c0935f2fc29804c /make/pom-template.xml | |
parent | a25e00c6568c934a0b252e7edac3d86d54ff71a8 (diff) |
Composing valid POMs for maven artifacts
Diffstat (limited to 'make/pom-template.xml')
-rw-r--r-- | make/pom-template.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/make/pom-template.xml b/make/pom-template.xml new file mode 100644 index 0000000..4a93ae7 --- /dev/null +++ b/make/pom-template.xml @@ -0,0 +1,51 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>org.jogamp.gluegen</groupId> + <artifactId>@ARTIFACTID@</artifactId> + <packaging>jar</packaging> + <name>GlueGen</name> + <version>@VERSION@</version> + <description>@DESCRIPTION@</description> + <url>http://jogamp.org/gluegen/www</url> + + <licenses> + <license> + <name>BSD</name> + <url>http://jogamp.org/gluegen/LICENSE.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <scm> + <url>http://github.com/sgothel/gluegen</url> + <connection>http://github.com/sgothel/gluegen.git</connection> + </scm> + + <developers> + <developer> + <id>sgothel</id> + <name>Sven Gothel</name> + <email>[email protected]</email> + <url>http://github.com/sgothel</url> + <organization>Jausoft</organization> + <organizationUrl>http://http://jausoft.com/blog</organizationUrl> + <roles> + <role>developer</role> + </roles> + </developer> + + <developer> + <id>mbien</id> + <name>Michael Bien</name> + <email>[email protected]</email> + <url>http://github.com/mbien</url> + <roles> + <role>developer</role> + </roles> + </developer> + </developers> + +@DEPENDENCIES@ + +</project> +
\ No newline at end of file |