Skip to content

Commit

Permalink
Fixed version numbers
Browse files Browse the repository at this point in the history
Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Mar 25, 2024
1 parent c4bb21b commit a7a8098
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
48 changes: 24 additions & 24 deletions impl/pom.xml
Expand Up @@ -19,7 +19,7 @@
-->
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
Expand All @@ -29,15 +29,15 @@

<groupId>org.glassfish.exousia</groupId>
<artifactId>exousia</artifactId>
<version>2.1.1</version>
<version>2.1.2-SNAPSHOT</version>

<name>Exousia</name>
<description>
Eclipse compatible implementation of Jakarta Authorization.
</description>
<url>https://projects.eclipse.org/projects/ee4j.exousia</url>
<inceptionYear>2019</inceptionYear>

<licenses>
<license>
<name>EPL 2.0</name>
Expand Down Expand Up @@ -66,7 +66,7 @@
<url>https://github.com/eclipse-ee4j/exousia/graphs/contributors</url>
</contributor>
</contributors>

<mailingLists>
<mailingList>
<name>Jakarta Authorization dev mailing list</name>
Expand Down Expand Up @@ -116,18 +116,18 @@
<scope>provided</scope>
<optional>true</optional>
</dependency>


<!-- Tests -->

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<pluginRepositories>
<pluginRepository>
<id>dash-licenses-snapshots</id>
Expand Down Expand Up @@ -156,7 +156,7 @@
<directory>src/main/resources</directory>
</resource>
</resources>

<plugins>
<!-- Sets minimal Maven version to 3.6.0 -->
<plugin>
Expand All @@ -177,7 +177,7 @@
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
Expand All @@ -186,8 +186,8 @@
<target>11</target>
</configuration>
</plugin>


<!-- Creates the OSGi MANIFEST.MF file -->
<plugin>
<groupId>org.apache.felix</groupId>
Expand All @@ -200,21 +200,21 @@
<_runee>JavaSE-11</_runee>
<Automatic-Module-Name>org.glassfish.exousia</Automatic-Module-Name>
<Extension-Name>org.glassfish.exousia</Extension-Name>

<Bundle-SymbolicName>org.glassfish.exousia</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Name>Exousia Jakarta Authorization Implementation ${project.version}</Bundle-Name>
<Bundle-Description>Eclipse Jakarta Authorization Implementation (jakarta.authorization/2.1) ${project.version}</Bundle-Description>
<Bundle-Description>Eclipse Jakarta Authorization Implementation (jakarta.authorization/2.1) ${project.version}</Bundle-Description>

<Specification-Title>Jakarta Authorization</Specification-Title>
<Specification-Version>2.1</Specification-Version>
<Specification-Vendor>Eclipse Foundation</Specification-Vendor>
<Implementation-Title>Exousia</Implementation-Title>

<Implementation-Title>Exousia</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>Eclipse</Implementation-Vendor>
<Implementation-Vendor>Eclipse</Implementation-Vendor>
<Implementation-Vendor-Id>org.glassfish</Implementation-Vendor-Id>

<Export-Package>
org.glassfish.exousia.*
</Export-Package>
Expand All @@ -237,7 +237,7 @@
</execution>
</executions>
</plugin>

<!-- Adds the manifest file created by the org.apache.felix:maven-bundle-plugin -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
Expand All @@ -249,7 +249,7 @@
</archive>
</configuration>
</plugin>


<!-- Configure the jar with the sources. -->
<plugin>
Expand All @@ -263,7 +263,7 @@
</execution>
</executions>
</plugin>

<!-- Create Javadoc for API jar -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -292,7 +292,7 @@ Use is subject to <a href="http://www.eclipse.org/legal/epl-2.0" target="_top">l
</execution>
</executions>
</plugin>

<!-- Check licenses of dependencies -->
<plugin>
<groupId>org.eclipse.dash</groupId>
Expand All @@ -307,7 +307,7 @@ Use is subject to <a href="http://www.eclipse.org/legal/epl-2.0" target="_top">l
</execution>
</executions>
</plugin>

<!-- Generate a "consumer pom" for the generated jar -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Expand Up @@ -19,7 +19,7 @@
-->
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
Expand All @@ -34,11 +34,11 @@

<name>Exousia Parent</name>
<description>
Eclipse compatible implementation of Jakarta Authorization - Parent.
Eclipse compatible implementation of Jakarta Authorization - Parent.
</description>
<url>https://projects.eclipse.org/projects/ee4j.exousia</url>
<inceptionYear>2019</inceptionYear>

<licenses>
<license>
<name>EPL 2.0</name>
Expand Down Expand Up @@ -67,7 +67,7 @@
<url>https://github.com/eclipse-ee4j/exousia/graphs/contributors</url>
</contributor>
</contributors>

<mailingLists>
<mailingList>
<name>Jakarta Authorization dev mailing list</name>
Expand All @@ -92,7 +92,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<modules>
<module>impl</module>
<module>spi</module>
Expand Down
4 changes: 2 additions & 2 deletions spi/tomcat/pom.xml
Expand Up @@ -30,11 +30,11 @@

<groupId>org.glassfish.exousia</groupId>
<artifactId>exousia.spi.tomcat</artifactId>
<version>2.1.1</version>
<version>2.1.2-SNAPSHOT</version>

<name>Exousia Tomcat Integration</name>
<description>
Code to integrate Exousia into Tomcat
Code to integrate Exousia into Tomcat
</description>
<url>https://projects.eclipse.org/projects/ee4j.exousia</url>
<inceptionYear>2019</inceptionYear>
Expand Down

0 comments on commit a7a8098

Please sign in to comment.