Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
was able to skip deploying jnc by using the following command
mvn deploy  -Prelease -Djapicmp.skip
change the parent to 2.0.1 to pick up stricter control over jackson-databind
changed the groupId
  • Loading branch information
243826 committed May 9, 2020
1 parent 05f29a5 commit 8052d86
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 22 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* linguist-vendored
*.java linguist-vendored=false
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: java
script: mvn verify
jdk:
- oraclejdk11
- openjdk11
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ To use the package, you need to use following Maven dependency:
</dependencies>
```

or download jars from [Central Maven repository](http://repo1.maven.org/maven2/com/celeral/netconf-async/).
or download jars from [Central Maven repository](https://repo1.maven.org/maven2/com/celeral/netconf-async/).

### Non-Maven

For non-Maven use cases, you download jars from [Central Maven repository](http://repo1.maven.org/maven2/com/celeral/netconf-async/).
For non-Maven use cases, you download jars from [Central Maven repository](https://repo1.maven.org/maven2/com/celeral/netconf-async/).

## Java Code Example

Expand Down
14 changes: 9 additions & 5 deletions async/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>com.celeral.netconf</groupId>
<artifactId>celeral-netconf</artifactId>
<version>1.0.0-SNAPSHOT</version>
<groupId>com.celeral</groupId>
<artifactId>netconf</artifactId>
<version>1.0.0</version>
</parent>

<name>Async NetConf with NetConf-1.1 Protocol</name>
<artifactId>netconf-async</artifactId>
<packaging>jar</packaging>

<properties>
<log4j2.version>2.13.0</log4j2.version>
<sshd.version>2.3.0</sshd.version>
Expand Down Expand Up @@ -151,7 +155,7 @@
<dependency>
<groupId>com.tailf</groupId>
<artifactId>jnc</artifactId>
<version>1.0</version>
<version>2.0.0</version>
</dependency>
</dependencies>
</project>
</project>
14 changes: 10 additions & 4 deletions jnc/jnc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,27 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.celeral.netconf</groupId>
<artifactId>celeral-netconf</artifactId>
<version>1.0.0-SNAPSHOT</version>
<groupId>com.celeral</groupId>
<artifactId>netconf</artifactId>
<version>1.0.0</version>
<relativePath>../..</relativePath>
</parent>

<groupId>com.tailf</groupId>
<artifactId>jnc</artifactId>
<version>1.0</version>
<version>2.0.0</version>
<packaging>jar</packaging>

<name>JNC</name>
<description>JNC (Java NETCONF Client) is the name of a Java library for communicating with NETCONF agents.</description>
<url>https://github.com/tail-f-systems/JNC</url>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</properties>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand Down
18 changes: 7 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,19 @@
<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>
<parent>
<groupId>com.celeral</groupId>
<artifactId>parent</artifactId>
<version>1.1.1</version>
</parent -->
<version>2.0.1</version>
</parent>

<groupId>com.celeral.netconf</groupId>
<artifactId>celeral-netconf</artifactId>
<version>1.0.0-SNAPSHOT</version>
<groupId>com.celeral</groupId>
<artifactId>netconf</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>

<modules>
<module>jnc/jnc</module>
<module>async</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
</project>

0 comments on commit 8052d86

Please sign in to comment.