Skip to content

Commit

Permalink
2024.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Jul 18, 2024
1 parent 40b950d commit 78505ba
Show file tree
Hide file tree
Showing 36 changed files with 1,023 additions and 231 deletions.
2 changes: 1 addition & 1 deletion bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<version>2024.7.1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>bootstrap</artifactId>
Expand Down
47 changes: 47 additions & 0 deletions bootstrap/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<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>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>bootstrap</artifactId>
<packaging>jar</packaging>
<name>Nasdanika HTML Bootstrap</name>
<description>Classes for generating Bootstrap UI.</description>
<url>https://docs.nasdanika.org/modules/html/modules/bootstrap/index.html</url>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>html</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>
</project>
2 changes: 1 addition & 1 deletion emf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<version>2024.7.1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>emf</artifactId>
Expand Down
52 changes: 52 additions & 0 deletions emf/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<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>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>emf</artifactId>
<packaging>jar</packaging>
<name>Nasdanika HTML EMF library</name>
<description>Classes for generating HTML Application UI from Ecore model elements.</description>
<url>https://docs.nasdanika.org/modules/html/modules/emf/index.html</url>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>app-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.nasdanika.core</groupId>
<artifactId>emf</artifactId>
<version>${core.version}</version>
</dependency>
</dependencies>
</project>

2 changes: 1 addition & 1 deletion html/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<version>2024.7.1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>html</artifactId>
Expand Down
47 changes: 47 additions & 0 deletions html/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<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>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>html</artifactId>
<packaging>jar</packaging>
<name>Nasdanika HTML</name>
<description>Classes for generating HTML UI.</description>
<url>https://docs.nasdanika.org/modules/html/modules/html/index.html</url>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.nasdanika.core</groupId>
<artifactId>common</artifactId>
<version>${core.version}</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion jstree/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<version>2024.7.1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>jstree</artifactId>
Expand Down
47 changes: 47 additions & 0 deletions jstree/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<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>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>jstree</artifactId>
<packaging>jar</packaging>
<name>Nasdanika HTML JsTree</name>
<description>Classes for generating JsTree nodes and context menus.</description>
<url>https://docs.nasdanika.org/modules/html/modules/jstree/index.html</url>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>html</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>
</project>
7 changes: 1 addition & 6 deletions model/app.gen.cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<version>2024.7.1</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>app-model-gen-cli</artifactId>
Expand Down Expand Up @@ -46,10 +46,5 @@
<artifactId>app-model-graph</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.nasdanika.models.ecore</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
55 changes: 55 additions & 0 deletions model/app.gen.cli/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<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>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2024.7.0</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>app-model-gen-cli</artifactId>
<packaging>jar</packaging>
<name>HTML App CLI commands</name>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.nasdanika.core</groupId>
<artifactId>cli</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>app-model-graph</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.nasdanika.models.ecore</groupId>
<artifactId>graph</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
1 change: 0 additions & 1 deletion model/app.gen.cli/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
requires spring.core;
requires org.eclipse.emf.ecore.xmi;
requires org.nasdanika.html.model.app.graph;
requires org.nasdanika.models.ecore.graph;

opens org.nasdanika.html.model.app.gen.cli to info.picocli;

Expand Down

This file was deleted.

Loading

0 comments on commit 78505ba

Please sign in to comment.