|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<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/maven-v4_0_0.xsd"> |
| 3 | + |
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
| 5 | + |
| 6 | + <parent> |
| 7 | + <artifactId>oss-parent</artifactId> |
| 8 | + <groupId>org.sonatype.oss</groupId> |
| 9 | + <version>9</version> |
| 10 | + </parent> |
| 11 | + |
5 | 12 | <groupId>org.freedesktop.gstreamer</groupId>
|
6 | 13 | <artifactId>gst1-java-core</artifactId>
|
| 14 | + <version>0.9-SNAPSHOT</version> |
7 | 15 | <packaging>jar</packaging>
|
| 16 | + |
8 | 17 | <name>GStreamer 1.x Java Core</name>
|
9 |
| - <version>0.9-SNAPSHOT</version> |
10 | 18 | <description>Unofficial Java binding for the Gstreamer framework</description>
|
11 |
| - <url>http://www.github.com/gstreamer-java</url> |
| 19 | + <url>https://github.com/gstreamer-java/gst1-java-core</url> |
| 20 | + |
| 21 | + <organization> |
| 22 | + <name>gstreamer-java</name> |
| 23 | + <url>http://www.github.com/gstreamer-java</url> |
| 24 | + </organization> |
| 25 | + |
| 26 | + <licenses> |
| 27 | + <license> |
| 28 | + <name>GNU Lesser General Public License</name> |
| 29 | + <url>http://www.gnu.org/licenses/lgpl.html</url> |
| 30 | + <distribution>repo</distribution> |
| 31 | + </license> |
| 32 | + </licenses> |
| 33 | + |
| 34 | + <scm> |
| 35 | + < url> [email protected]/gstreamer-java/gst1-java-core</ url> |
| 36 | + < connection>scm:git: [email protected]/gstreamer-java/gst1-java-core</ connection> |
| 37 | + < developerConnection>scm:git: [email protected]/gstreamer-java/gst1-java-core</ developerConnection> |
| 38 | + </scm> |
| 39 | + |
12 | 40 | <developers>
|
13 | 41 | <developer>
|
14 | 42 | <id>wmeissner</id>
|
|
60 | 88 | </roles>
|
61 | 89 | </developer>
|
62 | 90 | </developers>
|
63 |
| - <licenses> |
64 |
| - <license> |
65 |
| - <name>GNU Lesser General Public License</name> |
66 |
| - <url>http://www.gnu.org/licenses/lgpl.html</url> |
67 |
| - <distribution>repo</distribution> |
68 |
| - </license> |
69 |
| - </licenses> |
70 |
| -<!-- <scm> |
71 |
| - <url>http://code.google.com/p/gstreamer-java/source/browse</url> |
72 |
| - <connection>scm:svn:https://gstreamer-java.googlecode.com/svn/trunk/gstreamer-java</connection> |
73 |
| - <developerConnection>scm:svn:https://gstreamer-java.googlecode.com/svn/trunk/gstreamer-java</developerConnection> |
74 |
| - </scm>--> |
| 91 | + |
| 92 | + <properties> |
| 93 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 94 | + <maven.test.jvmargs></maven.test.jvmargs> |
| 95 | + <jna.version>4.1</jna.version> |
| 96 | + </properties> |
| 97 | + |
75 | 98 | <dependencies>
|
76 | 99 | <dependency>
|
77 | 100 | <groupId>junit</groupId>
|
|
119 | 142 | <plugin>
|
120 | 143 | <groupId>org.apache.maven.plugins</groupId>
|
121 | 144 | <artifactId>maven-release-plugin</artifactId>
|
122 |
| - <version>2.2.2</version> |
123 | 145 | </plugin>
|
124 | 146 | <plugin>
|
125 | 147 | <groupId>org.apache.maven.plugins</groupId>
|
|
154 | 176 | tanaka> LANG=en_GB.UTF-8 mvn [email protected] \ -Dgpg.passphrase=xxxx
|
155 | 177 | \ -Darguments="-Dgpg.passphrase=xxxx" \ -DconnectionUrl=scm:svn:https://gstreamer-java.googlecode.com/svn/branches/maven-release-1.x
|
156 | 178 | \ release:perform ============================================================================================ -->
|
157 |
| -<!-- <repository> |
158 |
| - <id>sonatype-nexus-staging</id> |
159 |
| - <name>Nexus Release Repository</name> |
160 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
161 |
| - </repository> |
162 |
| - <snapshotRepository> |
163 |
| - <id>sonatype-nexus-snapshots</id> |
164 |
| - <name>Nexus Snapshot Repository</name> |
165 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
166 |
| - </snapshotRepository> |
167 |
| - </distributionManagement>--> |
168 |
| - |
169 |
| - <properties> |
170 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
171 |
| - <maven.test.jvmargs></maven.test.jvmargs> |
172 |
| - <jna.version>4.1</jna.version> |
173 |
| - </properties> |
174 | 179 |
|
175 | 180 | <profiles>
|
176 | 181 | <profile>
|
|
0 commit comments