Migrated to robertvokac.com
This commit is contained in:
parent
042109ccfe
commit
7046116583
6
CREDITS
6
CREDITS
@ -1,5 +1,5 @@
|
|||||||
This file partially lists people, that have contributed to
|
This file partially lists people, that have contributed to
|
||||||
the Nanoboot project. They are sorted by name.
|
the "RobertVokac Parent" project. They are sorted by name.
|
||||||
The fields are: name (N), e-mail (E), web-address (W),
|
The fields are: name (N), e-mail (E), web-address (W),
|
||||||
PGP key ID and fingerprint (P), description (D) and
|
PGP key ID and fingerprint (P), description (D) and
|
||||||
snail-mail address (S).
|
snail-mail address (S).
|
||||||
@ -9,8 +9,8 @@
|
|||||||
----------
|
----------
|
||||||
|
|
||||||
N: Robert Vokac
|
N: Robert Vokac
|
||||||
E: mail@robertvokac.com
|
E: robertvokac@robertvokac.com
|
||||||
W: https://robertvokac.com
|
W: https://robertvokac.com
|
||||||
P: 4096R/C459E1E4 B209 C3F1 25C7 2618 FB18 AC8E C459 E1E4 B4A9 86BB
|
P: 4096R/C459E1E4 255C 69CC 1D09 CA54 EF0C C9DF FB9C E8E2 0AAD A55F
|
||||||
D: Founder
|
D: Founder
|
||||||
S: Czech Republic
|
S: Czech Republic
|
||||||
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -1,6 +1,6 @@
|
|||||||
pipeline
|
pipeline
|
||||||
/*
|
/*
|
||||||
Nanoboot Parent
|
RobertVokac Parent
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# nanoboot-parent
|
# robertvokac-parent
|
||||||
|
|
||||||
This is Maven parent pom.xml file for Nanoboot projects.
|
This is Maven parent pom.xml file for RobertVokac projects.
|
||||||
|
52
pom.xml
52
pom.xml
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
nanoboot-parent: This is Maven parent pom.xml file for Nanoboot projects.
|
robertvokac-parent: This is Maven parent pom.xml file for RobertVokac projects.
|
||||||
Copyright (C) 2018-2024 the original author or authors.
|
Copyright (C) 2018-2024 the original author or authors.
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or
|
This program is free software: you can redistribute it and/or
|
||||||
@ -23,22 +23,22 @@
|
|||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>org.nanoboot.essential</groupId>
|
<groupId>com.robertvokac.essential</groupId>
|
||||||
<artifactId>nanoboot-parent</artifactId>
|
<artifactId>robertvokac-parent</artifactId>
|
||||||
<version>0.1.1-SNAPSHOT</version>
|
<version>0.1.1-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>Nanoboot Parent</name>
|
<name>robertvokac-parent</name>
|
||||||
<description>Maven parent for Nanoboot projects</description>
|
<description>Maven parent for RobertVokac projects</description>
|
||||||
<url>https://nanoboot.org</url>
|
<url>https://robertvokac.org</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<checkstyle-maven-plugin.version>3.3.0</checkstyle-maven-plugin.version>
|
<checkstyle-maven-plugin.version>3.3.0</checkstyle-maven-plugin.version>
|
||||||
<checkstyle-config-location-path>nanoboot_checks.xml</checkstyle-config-location-path>
|
<checkstyle-config-location-path>robertvokac_checks.xml</checkstyle-config-location-path>
|
||||||
<checkstyle-config-location>${checkstyle-config-location-path}</checkstyle-config-location>
|
<checkstyle-config-location>${checkstyle-config-location-path}</checkstyle-config-location>
|
||||||
<javase.version>21</javase.version>
|
<javase.version>21</javase.version>
|
||||||
<nanoboot-javaformat-checkstyle.version>0.1.1-SNAPSHOT</nanoboot-javaformat-checkstyle.version>
|
<robertvokac-javaformat-checkstyle.version>0.1.1-SNAPSHOT</robertvokac-javaformat-checkstyle.version>
|
||||||
<!-- space -->
|
<!-- space -->
|
||||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||||
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
||||||
@ -117,9 +117,9 @@
|
|||||||
<!--https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/multi-module-config.html-->
|
<!--https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/multi-module-config.html-->
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.nanoboot.essential</groupId>
|
<groupId>com.robertvokac.essential</groupId>
|
||||||
<artifactId>nanoboot-javaformat-checkstyle</artifactId>
|
<artifactId>robertvokac-javaformat-checkstyle</artifactId>
|
||||||
<version>${nanoboot-javaformat-checkstyle.version}</version>
|
<version>${robertvokac-javaformat-checkstyle.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
@ -181,47 +181,47 @@
|
|||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.nanoboot.essential</groupId>
|
<groupId>com.robertvokac.essential</groupId>
|
||||||
<artifactId>nanoboot-javaformat-checkstyle</artifactId>
|
<artifactId>robertvokac-javaformat-checkstyle</artifactId>
|
||||||
<version>${nanoboot-javaformat-checkstyle.version}</version>
|
<version>${robertvokac-javaformat-checkstyle.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>releases</id>
|
<id>releases</id>
|
||||||
<name>nanoboot-releases-repository</name>
|
<name>robertvokac-releases-repository</name>
|
||||||
<url>https://maven.nanoboot.org/releases</url>
|
<url>https://maven.robertvokac.com/releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>snapshots</id>
|
<id>snapshots</id>
|
||||||
<name>nanoboot-snapshots-repository</name>
|
<name>robertvokac-snapshots-repository</name>
|
||||||
<url>https://maven.nanoboot.org/snapshots</url>
|
<url>https://maven.robertvokac.com/snapshots</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<pluginRepositories>
|
<pluginRepositories>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>releases</id>
|
<id>releases</id>
|
||||||
<name>nanoboot-releases-repository</name>
|
<name>robertvokac-releases-repository</name>
|
||||||
<url>https://maven.nanoboot.org/releases</url>
|
<url>https://maven.robertvokac.com/releases</url>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>snapshots</id>
|
<id>snapshots</id>
|
||||||
<name>nanoboot-snapshots-repository</name>
|
<name>robertvokac-snapshots-repository</name>
|
||||||
<url>https://maven.nanoboot.org/snapshots</url>
|
<url>https://maven.robertvokac.com/snapshots</url>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>nanoboot-releases-repository</id>
|
<id>robertvokac-releases-repository</id>
|
||||||
<url>https://maven.nanoboot.org/releases</url>
|
<url>https://maven.robertvokac.com/releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>nanoboot-snapshots-repository</id>
|
<id>robertvokac-snapshots-repository</id>
|
||||||
<url>https://maven.nanoboot.org/snapshots</url>
|
<url>https://maven.robertvokac.com/snapshots</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user