Skip to content

Commit ab754fb

Browse files
committed
Update pom.xml to prepare it for release, refs #12
1 parent 2f09960 commit ab754fb

File tree

2 files changed

+46
-35
lines changed

2 files changed

+46
-35
lines changed

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@
44
*.jar
55
*.war
66
*.ear
7-
/target/
7+
/target/
8+
9+
# Eclipse Files #
10+
.classpath
11+
.project
12+
.settings
13+

pom.xml

+39-34
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,42 @@
11
<?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+
44
<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+
512
<groupId>org.freedesktop.gstreamer</groupId>
613
<artifactId>gst1-java-core</artifactId>
14+
<version>0.9-SNAPSHOT</version>
715
<packaging>jar</packaging>
16+
817
<name>GStreamer 1.x Java Core</name>
9-
<version>0.9-SNAPSHOT</version>
1018
<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+
1240
<developers>
1341
<developer>
1442
<id>wmeissner</id>
@@ -60,18 +88,13 @@
6088
</roles>
6189
</developer>
6290
</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+
7598
<dependencies>
7699
<dependency>
77100
<groupId>junit</groupId>
@@ -119,7 +142,6 @@
119142
<plugin>
120143
<groupId>org.apache.maven.plugins</groupId>
121144
<artifactId>maven-release-plugin</artifactId>
122-
<version>2.2.2</version>
123145
</plugin>
124146
<plugin>
125147
<groupId>org.apache.maven.plugins</groupId>
@@ -154,23 +176,6 @@
154176
tanaka> LANG=en_GB.UTF-8 mvn [email protected] \ -Dgpg.passphrase=xxxx
155177
\ -Darguments="-Dgpg.passphrase=xxxx" \ -DconnectionUrl=scm:svn:https://gstreamer-java.googlecode.com/svn/branches/maven-release-1.x
156178
\ 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>
174179

175180
<profiles>
176181
<profile>

0 commit comments

Comments
 (0)