You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by se...@apache.org on 2020/05/06 10:40:32 UTC

[incubator-nlpcraft] branch 0.5.0-release-snapshot created (now d6a46c3)

This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a change to branch 0.5.0-release-snapshot
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.


      at d6a46c3  WIP.

This branch includes the following new commits:

     new a01e25a  WIP.
     new d6a46c3  WIP.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-nlpcraft] 01/02: WIP.

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch 0.5.0-release-snapshot
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit a01e25a98a6f24685cb2c474201861ffbc950152
Author: Sergey Kamov <se...@apache.org>
AuthorDate: Wed May 6 13:04:27 2020 +0300

    WIP.
---
 pom.xml | 31 +++++++++++++++++++------------
 1 file changed, 19 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 575571d..92d3f33 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <name>NLPCraft</name>
     <artifactId>nlpcraft</artifactId>
     <groupId>org.apache.nlpcraft</groupId>
-    <version>0.5.0</version>
+    <version>0.5.0-SNAPSHOT</version>
     <url>https://nlpcraft.apache.org</url>
     <description>An open source API to convert natural language into actions.</description>
 
@@ -49,17 +49,6 @@
         </license>
     </licenses>
 
-    <distributionManagement>
-        <snapshotRepository>
-            <id>ossrh</id>
-            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
-        </snapshotRepository>
-        <repository>
-            <id>ossrh</id>
-            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
-        </repository>
-    </distributionManagement>
-
     <scm>
         <url>https://github.com/apache/incubator-nlpcraft.git</url>
         <connection>scm:git:ssh://git@github.com/apache/incubator-nlpcraft.git</connection>
@@ -839,6 +828,24 @@ JDK version should be 1.8
                             </execution>
                         </executions>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <version>${maven.gpg.plugin.ver}</version>
+                        <configuration>
+                            <keyname>${gpg.keyname}</keyname>
+                            <passphrase>${gpg.passphrase}</passphrase>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>sign-artifacts</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
                 </plugins>
             </build>
         </profile>


[incubator-nlpcraft] 02/02: WIP.

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch 0.5.0-release-snapshot
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit d6a46c3b494b8d8396763f13993b7eb07e8deeff
Author: Sergey Kamov <se...@apache.org>
AuthorDate: Wed May 6 13:14:43 2020 +0300

    WIP.
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 92d3f33..c963de7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <name>NLPCraft</name>
     <artifactId>nlpcraft</artifactId>
     <groupId>org.apache.nlpcraft</groupId>
-    <version>0.5.0-SNAPSHOT</version>
+    <version>0.5.0</version>
     <url>https://nlpcraft.apache.org</url>
     <description>An open source API to convert natural language into actions.</description>
 
@@ -53,7 +53,7 @@
         <url>https://github.com/apache/incubator-nlpcraft.git</url>
         <connection>scm:git:ssh://git@github.com/apache/incubator-nlpcraft.git</connection>
         <developerConnection>scm:git:ssh://git@github.com/apache/incubator-nlpcraft.git</developerConnection>
-        <tag>HEAD</tag>
+        <tag>v0.5.0</tag>
     </scm>
 
     <properties>