Skip to content

Commit

Permalink
updating all poms for a maven release
Browse files Browse the repository at this point in the history
  • Loading branch information
GustikS committed Feb 22, 2022
1 parent 80be12f commit 48a01e2
Show file tree
Hide file tree
Showing 17 changed files with 108 additions and 81 deletions.
11 changes: 6 additions & 5 deletions Algebra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,28 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Algebra</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Settings</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Resources</artifactId>
<version>0.2.1-alpha</version>
<scope>test</scope>
Expand Down
17 changes: 9 additions & 8 deletions CLI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,40 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>CLI</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Settings</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Pipelines</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Logging</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Workflow</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand All @@ -51,7 +52,7 @@


<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Resources</artifactId>
<version>0.2.1-alpha</version>
<scope>test</scope>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public CommandLine parseParams(String[] args, Settings settings) throws Exceptio
Options options = getOptions(settings);
CommandLineParser parser = new DefaultParser();
CommandLine cmd = null;
LOG.info("with arguments: " + Arrays.toString(args) + " ...parsed into:");
LOG.info("with arguments: " + Arrays.toString(args) + " ...parsed into:\n");
try {
cmd = parser.parse(options, args);
if (cmd.getOptions().length == 0) {
Expand Down Expand Up @@ -184,8 +184,8 @@ public void printHelp(Options options) {
HelpFormatter formatter = new HelpFormatter();
formatter.setWidth(200);
formatter.setOptionComparator(null);
String header = "perform learning of a Lifted Relational Neural Network model";
String footer = "please refer to README or project page (https://github.com/GustikS/NeuraLogic) for further details.";
String header = "\nperform learning of a Lifted Relational Neural Network model\n";
String footer = "\nplease refer to README or project page (https://github.com/GustikS/NeuraLogic) for further details.\n";
formatter.printHelp("java -jar NeuraLogic.jar", header, options, footer, true);
}

Expand Down
7 changes: 4 additions & 3 deletions Drawing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Drawing</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Settings</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
13 changes: 7 additions & 6 deletions Learning/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,34 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Learning</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Algebra</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Settings</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Resources</artifactId>
<version>0.2.1-alpha</version>
<scope>test</scope>
Expand Down
9 changes: 5 additions & 4 deletions Logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Logging</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Settings</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
5 changes: 3 additions & 2 deletions Logic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Logic</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
13 changes: 7 additions & 6 deletions Logical/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,34 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Logical</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Algebra</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Logic</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Learning</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
9 changes: 5 additions & 4 deletions Neural/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Neural</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Algebra</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Learning</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
9 changes: 5 additions & 4 deletions Neuralization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Neuralization</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Logical</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Neural</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
9 changes: 5 additions & 4 deletions Parsing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Parsing</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Learning</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Logical</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
11 changes: 6 additions & 5 deletions Pipelines/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,28 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>NeuraLogic</artifactId>
<groupId>cz.cvut.fel.ida</groupId>
<!--<groupId>cz.cvut.fel.ida</groupId>-->
<groupId>io.github.gustiks</groupId>
<version>0.2.1-alpha</version>
</parent>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Pipelines</artifactId>
<dependencies>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Settings</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Utilities</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cz.cvut.fel.ida</groupId>
<groupId>io.github.gustiks</groupId>
<artifactId>Drawing</artifactId>
<version>0.2.1-alpha</version>
<scope>compile</scope>
Expand Down
Loading

0 comments on commit 48a01e2

Please sign in to comment.