Compare commits

...

2 Commits

5 changed files with 44 additions and 6 deletions

View File

@ -23,7 +23,7 @@
<parent>
<groupId>org.nanoboot.nanodata</groupId>
<artifactId>nanodata-parent</artifactId>
<version>0.0.0</version>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>org.nanoboot.nanodata</groupId>
<artifactId>nanodata-parent</artifactId>
<version>0.0.0</version>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>org.nanoboot.nanodata</groupId>
<artifactId>nanodata-parent</artifactId>
<version>0.0.0</version>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@ -24,7 +24,7 @@
<parent>
<groupId>org.nanoboot.nanodata</groupId>
<artifactId>nanodata-parent</artifactId>
<version>0.0.0</version>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

42
pom.xml
View File

@ -31,7 +31,7 @@
<groupId>org.nanoboot.nanodata</groupId>
<artifactId>nanodata-parent</artifactId>
<version>0.0.0</version>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>nanodata</name>
@ -46,7 +46,7 @@
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<nanodata.version>0.0.0</nanodata.version>
<nanodata.version>0.0.1-SNAPSHOT</nanodata.version>
<power.version>2.0.0</power.version>
<log4j.version>2.17.0</log4j.version>
<springframework.version>6.0.7</springframework.version>
@ -317,5 +317,43 @@
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>releases</id>
<name>nanoboot-releases-repository</name>
<url>https://maven.nanoboot.org/releases</url>
</repository>
<repository>
<id>snapshots</id>
<name>nanoboot-snapshots-repository</name>
<url>https://maven.nanoboot.org/snapshots</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>releases</id>
<name>nanoboot-releases-repository</name>
<url>https://maven.nanoboot.org/releases</url>
</pluginRepository>
<pluginRepository>
<id>snapshots</id>
<name>nanoboot-snapshots-repository</name>
<url>https://maven.nanoboot.org/snapshots</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>nanoboot-releases-repository</id>
<url>https://maven.nanoboot.org/releases</url>
</repository>
<snapshotRepository>
<id>nanoboot-snapshots-repository</id>
<url>https://maven.nanoboot.org/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>