Skip to content

Commit

Permalink
Update pom and readme to prepare for 1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargdd committed May 28, 2021
1 parent a33bc69 commit 2aa520f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
netphony-network-protocols v1.4.0-SNAPSHOT (remove in master)
netphony-network-protocols v1.4.0
=================================

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

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

## Compilation and use

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

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.

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



26 changes: 24 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>es.tid.netphony</groupId>
<artifactId>network-protocols</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
<packaging>jar</packaging>
<name>Netphony Network Protocols</name>
<description>BGP-LS,OSPF-TE,PCEP and RSVP-TE protocol encodings.</description>
Expand Down Expand Up @@ -144,7 +144,29 @@

</plugins>
</build>
<profiles>
<profile>
<id>deploy-maven-central</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>



</project>

0 comments on commit 2aa520f

Please sign in to comment.