Skip to content

Commit 2aa520f

Browse files
committed
Update pom and readme to prepare for 1.4.0 release
1 parent a33bc69 commit 2aa520f

2 files changed

Lines changed: 29 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
netphony-network-protocols v1.4.0-SNAPSHOT (remove in master)
1+
netphony-network-protocols v1.4.0
22
=================================
33

44
Repository branch build status in Travis CI:
@@ -34,7 +34,7 @@ Detailed CHANGELOG [click here](CHANGELOG)
3434

3535
## **Latest news**
3636
- Back to life after some time dormant :-)
37-
- PCEP Message numbers, Object classes and Object types from IANA https://www.iana.org/assignments/pcep/pcep.xhtml by 30th November
37+
- PCEP Message numbers, Object classes and Object types from IANA https://www.iana.org/assignments/pcep/pcep.xhtml by 30th November 2020
3838

3939
## Compilation and use
4040

@@ -51,7 +51,7 @@ To build the .jar file and run the tests, clone the repository, go to the main d
5151
<dependency>
5252
<groupId>es.tid.netphony</groupId>
5353
<artifactId>network-protocols</artifactId>
54-
<version>1.4.0-SNAPSHOT</version>
54+
<version>1.4.0</version>
5555
</dependency>
5656
```
5757
Authors keep also a copy of the artifact in maven central to facilitate the deployment. (*) In process
@@ -142,5 +142,7 @@ The software has been developed by Telefonica I+D Core & Transport Team, led by
142142

143143
The effort to release as open source of the code was funded by the E.U. CSA PACE. The code has been upgraded in the E.U. projects STRONGEST, PACE, IDEALIST, ACINO and 5GEx, as well as Telefonica Innovation activities.
144144

145+
PCEP and BGP-LS are included as requirement of the MUST Sub-group in TIP.
146+
145147

146148

pom.xml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>es.tid.netphony</groupId>
77
<artifactId>network-protocols</artifactId>
8-
<version>1.4.0-SNAPSHOT</version>
8+
<version>1.4.0</version>
99
<packaging>jar</packaging>
1010
<name>Netphony Network Protocols</name>
1111
<description>BGP-LS,OSPF-TE,PCEP and RSVP-TE protocol encodings.</description>
@@ -144,7 +144,29 @@
144144

145145
</plugins>
146146
</build>
147+
<profiles>
148+
<profile>
149+
<id>deploy-maven-central</id>
150+
<build>
151+
<plugins>
152+
<plugin>
153+
<groupId>org.apache.maven.plugins</groupId>
154+
<artifactId>maven-gpg-plugin</artifactId>
155+
<version>1.6</version>
156+
<executions>
157+
<execution>
158+
<id>sign-artifacts</id>
159+
<phase>verify</phase>
160+
<goals>
161+
<goal>sign</goal>
162+
</goals>
163+
</execution>
164+
</executions>
165+
</plugin>
166+
</plugins>
167+
</build>
168+
</profile>
169+
</profiles>
147170

148-
149171

150172
</project>

0 commit comments

Comments
 (0)