Skip to content

Commit

Permalink
fix parent to allow releases (#19)
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed May 7, 2020
1 parent 2fbcf51 commit ed4eee9
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand All @@ -16,7 +16,7 @@
<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>

<groupId>org.glassfish.external</groupId>
Expand All @@ -27,15 +27,15 @@
<name>management-api</name>
<description>Eclipse ORB</description>
<url>https://github.com/eclipse-ee4j/orb-gmbal-commons</url>

<licenses>
<license>
<name>EDL 1.0</name>
<url>http://www.eclipse.org/org/documents/edl-v10.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:ssh://git@github.com/eclipse/orb-gmbal-commons.git</connection>
<developerConnection>scm:git:ssh://git@github.com/eclipse/orb-gmbal-commons.git</developerConnection>
Expand All @@ -54,7 +54,7 @@
<url>scm:git:https://github.com/eclipse-ee4j/orb-gmbal-commons.git</url>
</site>
</distributionManagement>

<properties>
<base.jdk.version>8</base.jdk.version>
<upper.jdk.version>9</upper.jdk.version>
Expand Down Expand Up @@ -135,32 +135,32 @@
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>
org.glassfish.external.*
</Export-Package>
org.glassfish.external.*
</Export-Package>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goals>
<goal>manifest</goal>
</goals>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<archive>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand All @@ -186,7 +186,7 @@
</configuration>
</execution>
</executions>
</plugin>
</plugin>
<!-- prevent the site plugin from deploying to the scm url -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
Expand Down Expand Up @@ -226,10 +226,10 @@
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
</plugin>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit ed4eee9

Please sign in to comment.