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
|
||||
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),
|
||||
PGP key ID and fingerprint (P), description (D) and
|
||||
snail-mail address (S).
|
||||
@ -9,8 +9,8 @@
|
||||
----------
|
||||
|
||||
N: Robert Vokac
|
||||
E: mail@robertvokac.com
|
||||
E: robertvokac@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
|
||||
S: Czech Republic
|
||||
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -1,6 +1,6 @@
|
||||
pipeline
|
||||
/*
|
||||
Nanoboot Parent
|
||||
RobertVokac Parent
|
||||
|
||||
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"?>
|
||||
<!--
|
||||
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.
|
||||
|
||||
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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.nanoboot.essential</groupId>
|
||||
<artifactId>nanoboot-parent</artifactId>
|
||||
<groupId>com.robertvokac.essential</groupId>
|
||||
<artifactId>robertvokac-parent</artifactId>
|
||||
<version>0.1.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Nanoboot Parent</name>
|
||||
<description>Maven parent for Nanoboot projects</description>
|
||||
<url>https://nanoboot.org</url>
|
||||
<name>robertvokac-parent</name>
|
||||
<description>Maven parent for RobertVokac projects</description>
|
||||
<url>https://robertvokac.org</url>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<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>
|
||||
<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 -->
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-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-->
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.nanoboot.essential</groupId>
|
||||
<artifactId>nanoboot-javaformat-checkstyle</artifactId>
|
||||
<version>${nanoboot-javaformat-checkstyle.version}</version>
|
||||
<groupId>com.robertvokac.essential</groupId>
|
||||
<artifactId>robertvokac-javaformat-checkstyle</artifactId>
|
||||
<version>${robertvokac-javaformat-checkstyle.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
@ -181,47 +181,47 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.nanoboot.essential</groupId>
|
||||
<artifactId>nanoboot-javaformat-checkstyle</artifactId>
|
||||
<version>${nanoboot-javaformat-checkstyle.version}</version>
|
||||
<groupId>com.robertvokac.essential</groupId>
|
||||
<artifactId>robertvokac-javaformat-checkstyle</artifactId>
|
||||
<version>${robertvokac-javaformat-checkstyle.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>releases</id>
|
||||
<name>nanoboot-releases-repository</name>
|
||||
<url>https://maven.nanoboot.org/releases</url>
|
||||
<name>robertvokac-releases-repository</name>
|
||||
<url>https://maven.robertvokac.com/releases</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>snapshots</id>
|
||||
<name>nanoboot-snapshots-repository</name>
|
||||
<url>https://maven.nanoboot.org/snapshots</url>
|
||||
<name>robertvokac-snapshots-repository</name>
|
||||
<url>https://maven.robertvokac.com/snapshots</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>releases</id>
|
||||
<name>nanoboot-releases-repository</name>
|
||||
<url>https://maven.nanoboot.org/releases</url>
|
||||
<name>robertvokac-releases-repository</name>
|
||||
<url>https://maven.robertvokac.com/releases</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>snapshots</id>
|
||||
<name>nanoboot-snapshots-repository</name>
|
||||
<url>https://maven.nanoboot.org/snapshots</url>
|
||||
<name>robertvokac-snapshots-repository</name>
|
||||
<url>https://maven.robertvokac.com/snapshots</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>nanoboot-releases-repository</id>
|
||||
<url>https://maven.nanoboot.org/releases</url>
|
||||
<id>robertvokac-releases-repository</id>
|
||||
<url>https://maven.robertvokac.com/releases</url>
|
||||
</repository>
|
||||
|
||||
<snapshotRepository>
|
||||
<id>nanoboot-snapshots-repository</id>
|
||||
<url>https://maven.nanoboot.org/snapshots</url>
|
||||
<id>robertvokac-snapshots-repository</id>
|
||||
<url>https://maven.robertvokac.com/snapshots</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
|
||||
|
Reference in New Issue
Block a user