Skip to content

Commit

Permalink
Clean poms, formatting, versions and automatic module id
Browse files Browse the repository at this point in the history
Signed-off-by: arjantijms <arjan.tijms@gmail.com>
  • Loading branch information
arjantijms committed Aug 24, 2020
1 parent 1fb4874 commit 506e891
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 23 deletions.
8 changes: 2 additions & 6 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
<email>jsp-dev@eclipse.org</email>
</developer>
</developers>

<contributors>
<contributor>
<name>Jakarta Server Pages Contributors</name>
Expand All @@ -70,7 +69,6 @@
<url>https://github.com/eclipse-ee4j/jsp-api</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>github</system>
<url>https://github.com/eclipse-ee4j/jsp-api/issues</url>
Expand All @@ -89,7 +87,7 @@
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0-M2</version>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -117,7 +115,6 @@
<targetPath>META-INF</targetPath>
</resource>
</resources>

<plugins>
<!-- Sets minimal Maven version to 3.5.4 -->
<plugin>
Expand Down Expand Up @@ -217,7 +214,7 @@
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifestEntries>
<Automatic-Module-Name>jakarta.servlet.jsp.api</Automatic-Module-Name>
<Automatic-Module-Name>jakarta.servlet.jsp</Automatic-Module-Name>
</manifestEntries>
</archive>
<excludes>
Expand Down Expand Up @@ -291,5 +288,4 @@ Use is subject to <a href="{@docRoot}/doc-files/EFSL.html" target="_top">license
</plugin>
</plugins>
</build>

</project>
7 changes: 2 additions & 5 deletions impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
<email>jsp-dev@eclipse.org</email>
</developer>
</developers>

<contributors>
<contributor>
<name>Jakarta Server Pages Contributors</name>
Expand All @@ -69,7 +68,6 @@
<url>https://github.com/eclipse-ee4j/jsp-api</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>github</system>
<url>https://github.com/eclipse-ee4j/jsp-api/issues</url>
Expand Down Expand Up @@ -142,7 +140,6 @@
<targetPath>META-INF/services</targetPath>
</resource>
</resources>

<plugins>
<!-- Sets minimal Maven version to 3.5.4 -->
<plugin>
Expand Down Expand Up @@ -195,7 +192,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<configuration>
<archive>
<manifestFile>
Expand Down Expand Up @@ -240,7 +237,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
9 changes: 3 additions & 6 deletions jdsol-spec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<name>Jakarta Debugging Support for Other Languages Specification</name>
<description>Jakarta Debugging Support for Other Languages - Specification</description>
<url>https://projects.eclipse.org/projects/ee4j.jsp</url>

<licenses>
<license>
<name>Eclipse Foundation Specification License – v1.0</name>
Expand All @@ -52,7 +51,6 @@
<email>jsp-dev@eclipse.org</email>
</developer>
</developers>

<contributors>
<contributor>
<name>Jakarta Server Pages Contributors</name>
Expand All @@ -77,7 +75,6 @@
<url>https://github.com/eclipse-ee4j/jsp-api</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>github</system>
<url>https://github.com/eclipse-ee4j/jsp-api/issues</url>
Expand All @@ -87,9 +84,9 @@
<site.output.dir>${project.build.directory}/staging</site.output.dir>
<maven.site.skip>true</maven.site.skip>
<asciidoctor.maven.plugin.version>2.0.0-RC.1</asciidoctor.maven.plugin.version>
<asciidoctorj.version>2.3.0</asciidoctorj.version>
<asciidoctorj.version>2.4.0</asciidoctorj.version>
<asciidoctorj.pdf.version>1.5.3</asciidoctorj.pdf.version>
<jruby.version>9.2.12.0</jruby.version>
<jruby.version>9.2.13.0</jruby.version>
<!-- status: DRAFT, BETA, etc., or blank for final -->
<status>DRAFT</status>
<maven.build.timestamp.format>MMMM dd, yyyy</maven.build.timestamp.format>
Expand Down Expand Up @@ -235,7 +232,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<inherited>false</inherited>
<executions>
<execution>
Expand Down
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,29 @@
<module>impl</module>
</modules>

<build>
<plugins>
<!-- Sets minimal Maven version to 3.5.4 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.5.4</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
9 changes: 3 additions & 6 deletions spec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
<name>Jakarta Server Pages Specification</name>
<description>Jakarta Server Pages - Specification</description>
<url>https://projects.eclipse.org/projects/ee4j.jsp</url>

<licenses>
<license>
<name>Eclipse Foundation Specification License – v1.0</name>
Expand All @@ -51,7 +50,6 @@
<email>jsp-dev@eclipse.org</email>
</developer>
</developers>

<contributors>
<contributor>
<name>Jakarta Server Pages Contributors</name>
Expand All @@ -76,7 +74,6 @@
<url>https://github.com/eclipse-ee4j/jsp-api</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>github</system>
<url>https://github.com/eclipse-ee4j/jsp-api/issues</url>
Expand All @@ -85,9 +82,9 @@
<properties>
<site.output.dir>${project.build.directory}/staging</site.output.dir>
<maven.site.skip>true</maven.site.skip>
<asciidoctorj.version>2.3.0</asciidoctorj.version>
<asciidoctorj.version>2.4.0</asciidoctorj.version>
<asciidoctorj.pdf.version>1.5.3</asciidoctorj.pdf.version>
<jruby.version>9.2.12.0</jruby.version>
<jruby.version>9.2.13.0</jruby.version>
<!-- status: DRAFT, BETA, etc., or blank for final -->
<status>DRAFT</status>
<maven.build.timestamp.format>MMMM dd, yyyy</maven.build.timestamp.format>
Expand Down Expand Up @@ -233,7 +230,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<inherited>false</inherited>
<executions>
<execution>
Expand Down

0 comments on commit 506e891

Please sign in to comment.