This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-91-MODULES
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-91-MODULES by this
push:
new ae3daeb WIP.
ae3daeb is described below
commit ae3daeb53c35031bcd3da95330476b7262ec4640
Author: Sergey Kamov <[email protected]>
AuthorDate: Fri Apr 23 12:45:08 2021 +0300
WIP.
---
bin/MAVEN-RELEASE.md | 2 +-
.../apache/nlpcraft/{utils => examples}/helloworld/HelloWorldModel.java | 2 +-
.../{utils => examples}/helloworld/NCTestExampleModelsSpec.scala | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bin/MAVEN-RELEASE.md b/bin/MAVEN-RELEASE.md
index 585f369..6777ef9 100644
--- a/bin/MAVEN-RELEASE.md
+++ b/bin/MAVEN-RELEASE.md
@@ -82,7 +82,7 @@ The following `pom.xml` files should be updates:
## 3. Make Maven Release
- `cd <PROJECT_FOLDER>`
- - `mvn -DskipTests=true clean deploy -P 'stanford-corenlp,release'`
+ - `mvn -DskipTests=true clean deploy -P 'stanford-corenlp,examples,release'`
- Login into https://repository.apache.org
- Look at staging repositories
https://repository.apache.org/#stagingRepositories
- Find and close `nlpcraft` release, then check its state.
diff --git
a/nlpcraft-examples/helloworld/src/main/java/org/apache/nlpcraft/utils/helloworld/HelloWorldModel.java
b/nlpcraft-examples/helloworld/src/main/java/org/apache/nlpcraft/examples/helloworld/HelloWorldModel.java
similarity index 97%
rename from
nlpcraft-examples/helloworld/src/main/java/org/apache/nlpcraft/utils/helloworld/HelloWorldModel.java
rename to
nlpcraft-examples/helloworld/src/main/java/org/apache/nlpcraft/examples/helloworld/HelloWorldModel.java
index 45ec5f6..8d1580a 100644
---
a/nlpcraft-examples/helloworld/src/main/java/org/apache/nlpcraft/utils/helloworld/HelloWorldModel.java
+++
b/nlpcraft-examples/helloworld/src/main/java/org/apache/nlpcraft/examples/helloworld/HelloWorldModel.java
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package org.apache.nlpcraft.utils.helloworld;
+package org.apache.nlpcraft.examples.helloworld;
import org.apache.nlpcraft.common.NCException;
import org.apache.nlpcraft.model.NCContext;
diff --git
a/nlpcraft-examples/helloworld/src/test/java/org/apache/nlpcraft/utils/helloworld/NCTestExampleModelsSpec.scala
b/nlpcraft-examples/helloworld/src/test/java/org/apache/nlpcraft/examples/helloworld/NCTestExampleModelsSpec.scala
similarity index 96%
rename from
nlpcraft-examples/helloworld/src/test/java/org/apache/nlpcraft/utils/helloworld/NCTestExampleModelsSpec.scala
rename to
nlpcraft-examples/helloworld/src/test/java/org/apache/nlpcraft/examples/helloworld/NCTestExampleModelsSpec.scala
index aca3084..e7c561f 100644
---
a/nlpcraft-examples/helloworld/src/test/java/org/apache/nlpcraft/utils/helloworld/NCTestExampleModelsSpec.scala
+++
b/nlpcraft-examples/helloworld/src/test/java/org/apache/nlpcraft/examples/helloworld/NCTestExampleModelsSpec.scala
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package org.apache.nlpcraft.utils.helloworld
+package org.apache.nlpcraft.examples.helloworld
import org.apache.nlpcraft.model.tools.test.NCTestAutoModelValidator
import org.junit.jupiter.api.{Assertions, Test}