summaryrefslogtreecommitdiffstats
path: root/maven/projects/gluegen/pom.sh
blob: f8397234b17d434a2a69f8ff6a8e18f0e6080f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 gluegen.pom.sh, do not edit directly! -->
  <!--                                                         -->

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jogamp.gluegen</groupId>
  <artifactId>gluegen</artifactId>
  <version>${VERSION}</version>
  <packaging>jar</packaging>
  <name>GlueGen Runtime</name>
  <description>JNI binding generator (Non-runtime components and atomic jar files)</description>
  <url>http://jogamp.org/gluegen/www/</url>

EOF

cat pom.in || exit 1
cat <<EOF
</project>
EOF