diff options
author | Sven Gothel <[email protected]> | 2014-07-03 16:58:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-07-03 16:58:18 +0200 |
commit | a9dbc98969892b9635bba8fe26dd63d2ebbbc777 (patch) | |
tree | a72574e76e8dc974a7fc6094505cf7e42a1586b3 /maven/projects/gluegen/pom.in | |
parent | c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74 (diff) | |
parent | 30e387d9c6ab34fed8132437321ea31ed0b6a62a (diff) |
Merge branch 'master' of ssh://jogamp.org/srv/scm/jogamp-scripting
Diffstat (limited to 'maven/projects/gluegen/pom.in')
-rw-r--r-- | maven/projects/gluegen/pom.in | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/maven/projects/gluegen/pom.in b/maven/projects/gluegen/pom.in new file mode 100644 index 0000000..0dfa180 --- /dev/null +++ b/maven/projects/gluegen/pom.in @@ -0,0 +1,63 @@ + <!-- gluegen/pom.in --> + + <scm> + <url>http://jogamp.org/git/?p=gluegen.git/</url> + <connection>scm:git:http://jogamp.org/git/gluegen.git/</connection> + <developerConnection>scm:git:http://jogamp.org/git/gluegen.git/</developerConnection> + </scm> + + <licenses> + <license> + <name>BSD-2 License</name> + <url>http://www.opensource.org/licenses/BSD-2-Clause</url> + </license> + <license> + <name>BSD-3 License</name> + <url>http://www.opensource.org/licenses/BSD-3-Clause</url> + </license> + <license> + <name>BSD-4 License</name> + <url>http://www.spdx.org/licenses/BSD-4-Clause</url> + </license> + </licenses> + + <developers> + <developer> + <id>sgothel</id> + <name>Sven Gothel</name> + <email>[email protected]</email> + <url>http://blog.jausoft.com</url> + </developer> + </developers> + + <issueManagement> + <url>http://jogamp.org/bugzilla/</url> + <system>Bugzilla</system> + </issueManagement> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.4</version> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + <version>2.4</version> + </extension> + </extensions> + </build> + |