Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
This repository was archived by the owner on Aug 17, 2018. It is now read-only.

Commit e41363f

Browse files
author
Vinay Vishal
committed
Update scm/plugin version
1 parent 13d7122 commit e41363f

File tree

4 files changed

+71
-38
lines changed

4 files changed

+71
-38
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Prerequisites
2+
3+
Oracle JDK 1.7

api/pom.xml

Lines changed: 40 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
<parent>
4646
<groupId>net.java</groupId>
4747
<artifactId>jvnet-parent</artifactId>
48-
<version>3</version>
48+
<version>5</version>
4949
</parent>
5050

5151
<modelVersion>4.0.0</modelVersion>
5252
<groupId>javax.servlet.jsp</groupId>
5353
<artifactId>javax.servlet.jsp-api</artifactId>
54-
<version>2.3.2-b03-SNAPSHOT</version>
54+
<version>2.3.3-SNAPSHOT</version>
5555
<packaging>jar</packaging>
5656
<name>JavaServer Pages(TM) API</name>
5757

@@ -76,33 +76,35 @@
7676
</developer>
7777
</developers>
7878

79-
<url>http://jsp.java.net</url>
79+
<url>https://javaee.github.io/javaee-jsp-api</url>
8080
<organization>
81-
<name>GlassFish Community</name>
82-
<url>http://glassfish.org</url>
81+
<name>Oracle</name>
82+
<url>http://www.oracle.com</url>
8383
</organization>
84+
8485
<licenses>
8586
<license>
8687
<name>CDDL + GPLv2 with classpath exception</name>
87-
<url>http://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url>
88+
<url>://oss.oracle.com/licenses/CDDL+GPL-1.1</url>
8889
<distribution>repo</distribution>
8990
<comments>A business-friendly OSS license</comments>
9091
</license>
9192
</licenses>
9293
<issueManagement>
93-
<system>jira</system>
94-
<url>http://java.net/jira/browse/JSP</url>
95-
</issueManagement>
94+
<system>github</system>
95+
<url>https://github.com/javaee/javaee-jsp-api/issues/</url>
96+
</issueManagement>
9697
<mailingLists>
9798
<mailingList>
9899
<name>JSP Developer</name>
99100
<archive>dev@jsp.java.net</archive>
100101
</mailingList>
101102
</mailingLists>
102103
<scm>
103-
<connection>scm:svn:https://svn.java.net/svn/jsp~svn/trunk/api</connection>
104-
<developerConnection>scm:svn:https://svn.java.net/svn/jsp~svn/trunk/api</developerConnection>
105-
<url>http://java.net/projects/jsp/sources/svn/show</url>
104+
<connection>scm:git:https://github.com/javaee/javaee-jsp-api.git</connection>
105+
<developerConnection>scm:git:ssh://git@github.com/javaee/javaee-jsp-api.git</developerConnection>
106+
<url>https://github.com/javaee/javaee-jsp-api</url>
107+
<tag>HEAD</tag>
106108
</scm>
107109

108110
<build>
@@ -133,6 +135,7 @@
133135
<plugin>
134136
<groupId>org.apache.maven.plugins</groupId>
135137
<artifactId>maven-jar-plugin</artifactId>
138+
<version>3.1.0</version>
136139
<configuration>
137140
<!-- Use default to include version in jar file name -->
138141
<!--finalName>${project.artifactId}</finalName-->
@@ -167,7 +170,7 @@
167170
<plugin>
168171
<groupId>org.apache.maven.plugins</groupId>
169172
<artifactId>maven-source-plugin</artifactId>
170-
<version> 2.1 </version>
173+
<version>2.1</version>
171174
<configuration>
172175
<includePom>true</includePom>
173176
</configuration>
@@ -220,14 +223,37 @@
220223
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
221224
</configuration>
222225
</plugin>
226+
<plugin>
227+
<groupId>org.apache.maven.plugins</groupId>
228+
<artifactId>maven-gpg-plugin</artifactId>
229+
<version>1.6</version>
230+
<executions>
231+
<execution>
232+
<id>sign-artifacts</id>
233+
<phase>verify</phase>
234+
<goals>
235+
<goal>sign</goal>
236+
</goals>
237+
</execution>
238+
</executions>
239+
</plugin>
223240
<plugin>
224241
<groupId>org.apache.maven.plugins</groupId>
225242
<artifactId>maven-release-plugin</artifactId>
243+
<version>2.5.2</version>
226244
<configuration>
227245
<mavenExecutorId>forked-path</mavenExecutorId>
228246
<useReleaseProfile>false</useReleaseProfile>
247+
<tagNameFormat>@{project.version}</tagNameFormat>
229248
<arguments>${release.arguments}</arguments>
230249
</configuration>
250+
<dependencies>
251+
<dependency>
252+
<groupId>org.apache.maven.scm</groupId>
253+
<artifactId>maven-scm-provider-gitexe</artifactId>
254+
<version>1.9.4</version>
255+
</dependency>
256+
</dependencies>
231257
</plugin>
232258
</plugins>
233259
<resources>
@@ -263,7 +289,7 @@
263289
<dependency>
264290
<groupId>javax.el</groupId>
265291
<artifactId>javax.el-api</artifactId>
266-
<version>[3.0.0,)</version>
292+
<version>[3.0.1-b06,)</version>
267293
<scope>provided</scope>
268294
</dependency>
269295
</dependencies>

impl/pom.xml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
<parent>
4545
<groupId>net.java</groupId>
4646
<artifactId>jvnet-parent</artifactId>
47-
<version>1</version>
47+
<version>5</version>
4848
</parent>
4949

5050
<modelVersion>4.0.0</modelVersion>
5151
<groupId>org.glassfish.web</groupId>
5252
<artifactId>javax.servlet.jsp</artifactId>
53-
<version>2.3.3-b04-SNAPSHOT</version>
53+
<version>2.3.4-SNAPSHOT</version>
5454
<packaging>jar</packaging>
5555
<name>JSP implementation</name>
5656

@@ -75,32 +75,35 @@
7575
</developer>
7676
</developers>
7777

78-
<url>http://jsp.java.net</url>
78+
<url>https://javaee.github.io/javaee-jsp-api</url>
7979
<organization>
80-
<name>GlassFish Community</name>
81-
<url>http://glassfish.org</url>
80+
<name>Oracle</name>
81+
<url>http://www.oracle.com</url>
8282
</organization>
83+
8384
<licenses>
8485
<license>
8586
<name>CDDL + GPLv2 with classpath exception</name>
86-
<url>http://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url> <distribution>repo</distribution>
87+
<url>://oss.oracle.com/licenses/CDDL+GPL-1.1</url>
88+
<distribution>repo</distribution>
8789
<comments>A business-friendly OSS license</comments>
8890
</license>
8991
</licenses>
9092
<issueManagement>
91-
<system>jira</system>
92-
<url>http://java.net/jira/browse/JSP</url>
93-
</issueManagement>
93+
<system>github</system>
94+
<url>https://github.com/javaee/javaee-jsp-api/issues/</url>
95+
</issueManagement>
9496
<mailingLists>
9597
<mailingList>
9698
<name>JSP Developer</name>
9799
<archive>dev@jsp.java.net</archive>
98100
</mailingList>
99101
</mailingLists>
100102
<scm>
101-
<connection>scm:svn:https://svn.java.net/svn/jsp~svn/trunk/impl</connection>
102-
<developerConnection>scm:svn:https://svn.java.net/svn/jsp~svn/trunk/impl</developerConnection>
103-
<url>http://java.net/projects/jsp/sources/svn/show</url>
103+
<connection>scm:git:https://github.com/javaee/javaee-jsp-api.git</connection>
104+
<developerConnection>scm:git:ssh://git@github.com/javaee/javaee-jsp-api.git</developerConnection>
105+
<url>https://github.com/javaee/javaee-jsp-api</url>
106+
<tag>HEAD</tag>
104107
</scm>
105108

106109
<build>
@@ -291,7 +294,7 @@
291294
<dependency>
292295
<groupId>org.glassfish</groupId>
293296
<artifactId>javax.el</artifactId>
294-
<version>[3.0.1-b05,)</version>
297+
<version>[3.0.1-b10,)</version>
295298
</dependency>
296299
<dependency>
297300
<groupId>javax.servlet.jsp</groupId>

parent-pom/pom.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<parent>
4747
<groupId>net.java</groupId>
4848
<artifactId>jvnet-parent</artifactId>
49-
<version>1</version>
49+
<version>5</version>
5050
</parent>
5151

5252
<groupId>org.glassfish.web</groupId>
@@ -67,33 +67,34 @@
6767
</developer>
6868
</developers>
6969

70-
<url>http://java.net/projects/jsp</url>
70+
<url>https://javaee.github.io/javaee-jsp-api</url>
7171
<organization>
72-
<name>GlassFish Community</name>
73-
<url>http://glassfish.org</url>
72+
<name>Oracle</name>
73+
<url>http://www.oracle.com</url>
7474
</organization>
75+
7576
<licenses>
7677
<license>
7778
<name>CDDL + GPLv2 with classpath exception</name>
78-
<url>https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url>
79+
<url>://oss.oracle.com/licenses/CDDL+GPL-1.1</url>
7980
<distribution>repo</distribution>
8081
<comments>A business-friendly OSS license</comments>
8182
</license>
8283
</licenses>
8384
<issueManagement>
84-
<system>bugzilla</system>
85-
<url>http://java.net/jira/browse/JSP</url>
86-
</issueManagement>
85+
<system>github</system>
86+
<url>https://github.com/javaee/javaee-jsp-api/issues/</url>
87+
</issueManagement>
8788
<mailingLists>
8889
<mailingList>
8990
<name>JSP Developer</name>
9091
<archive>dev@jsp.java.net</archive>
9192
</mailingList>
9293
</mailingLists>
9394
<scm>
94-
<connection>scm:svn:http://svn.java.net/svn/jsp~svn</connection>
95-
<developerConnection>scm:svn:http://svn.java.net/jsp~svn</developerConnection>
96-
<url>http://java.net/projects/jsp/sources/svn/show</url>
95+
<connection>scm:git:https://github.com/javaee/javaee-jsp-api.git</connection>
96+
<developerConnection>scm:git:ssh://git@github.com/javaee/javaee-jsp-api.git</developerConnection>
97+
<url>https://github.com/javaee/javaee-jsp-api</url>
9798
</scm>
9899

99100
<properties>

0 commit comments

Comments
 (0)