build: ignore target folders
This commit is contained in:
parent
0bcbcbaa19
commit
c6fd2ad186
2 changed files with 22 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -26,8 +26,10 @@ replay_pid*
|
||||||
|
|
||||||
# Nicko first pass build files
|
# Nicko first pass build files
|
||||||
core/target
|
core/target
|
||||||
|
v1_17_R1/target
|
||||||
v1_18_R1/target
|
v1_18_R1/target
|
||||||
v1_18_R2/target
|
v1_18_R2/target
|
||||||
|
v1_19_R1/target
|
||||||
|
|
||||||
# Idea Folder
|
# Idea Folder
|
||||||
.idea
|
.idea
|
||||||
|
|
20
v1_17_R1/pom.xml
Normal file
20
v1_17_R1/pom.xml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<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">
|
||||||
|
<parent>
|
||||||
|
<artifactId>nicko-parent</artifactId>
|
||||||
|
<groupId>net.artelnatif</groupId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>v1_17_R1</artifactId>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
</project>
|
Loading…
Reference in a new issue