diff options
Diffstat (limited to 'maven/projects/jocl')
-rw-r--r-- | maven/projects/jocl/atomics | 1 | ||||
-rw-r--r-- | maven/projects/jocl/dummy-jar | 1 | ||||
-rw-r--r-- | maven/projects/jocl/natives | 1 | ||||
-rw-r--r-- | maven/projects/jocl/pom.in | 75 | ||||
-rwxr-xr-x | maven/projects/jocl/pom.sh | 37 | ||||
-rw-r--r-- | maven/projects/jocl/source-zip | 1 |
6 files changed, 116 insertions, 0 deletions
diff --git a/maven/projects/jocl/atomics b/maven/projects/jocl/atomics new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/maven/projects/jocl/atomics @@ -0,0 +1 @@ + diff --git a/maven/projects/jocl/dummy-jar b/maven/projects/jocl/dummy-jar new file mode 100644 index 0000000..3639190 --- /dev/null +++ b/maven/projects/jocl/dummy-jar @@ -0,0 +1 @@ +no-dummy-jar diff --git a/maven/projects/jocl/natives b/maven/projects/jocl/natives new file mode 100644 index 0000000..660f1ae --- /dev/null +++ b/maven/projects/jocl/natives @@ -0,0 +1 @@ +natives diff --git a/maven/projects/jocl/pom.in b/maven/projects/jocl/pom.in new file mode 100644 index 0000000..e7e7b56 --- /dev/null +++ b/maven/projects/jocl/pom.in @@ -0,0 +1,75 @@ + <!-- jocl/pom.in --> + + <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>SGI Free Software License B</name> + <url>http://oss.sgi.com/projects/FreeB</url> + </license> + <license> + <name>Apache License Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0</url> + </license> + <license> + <name>Apache License Version 1.1</name> + <url>http://www.apache.org/licenses/LICENSE-1.1</url> + </license> + <license> + <name>Ubuntu Font Licence 1.0</name> + <url>http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt</url> + </license> + </licenses> + + <scm> + <url>http://jogamp.org/git/?p=jocl.git/</url> + <connection>scm:git:http://jogamp.org/git/jocl.git/</connection> + <developerConnection>scm:git:http://jogamp.org/git/jocl.git/</developerConnection> + </scm> + + <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> + diff --git a/maven/projects/jocl/pom.sh b/maven/projects/jocl/pom.sh new file mode 100755 index 0000000..32d0036 --- /dev/null +++ b/maven/projects/jocl/pom.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +if [ $# -lt 1 ] +then + echo "usage: version" 1>&2 + exit 1 +fi + +VERSION="$1" +shift + +cat <<EOF +<?xml version="1.0" encoding="UTF-8"?> +<project + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- --> + <!-- Auto generated by jocl.pom.sh, do not edit directly! --> + <!-- --> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.jogamp.jocl</groupId> + <artifactId>jocl</artifactId> + <version>${VERSION}</version> + <packaging>jar</packaging> + <name>JOCL</name> + <description>Java™ Binding for the OpenCL® API</description> + <url>http://jogamp.org/jocl/www/</url> + +EOF + +cat pom.in || exit 1 +cat <<EOF +</project> +EOF diff --git a/maven/projects/jocl/source-zip b/maven/projects/jocl/source-zip new file mode 100644 index 0000000..e278b5a --- /dev/null +++ b/maven/projects/jocl/source-zip @@ -0,0 +1 @@ +jocl-java-src.zip |