Skip to content
Snippets Groups Projects
Commit edd995e7 authored by jez04's avatar jez04
Browse files

fix: missing gitignore file

parent 4e41ebd1
No related merge requests found
Pipeline #1008 failed with stages
in 0 seconds
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>cz.vsb.fei.java2</groupId> <groupId>cz.vsb.fei.java2</groupId>
<artifactId>javafx-quickstart</artifactId> <artifactId>javafx-quickstart</artifactId>
<version>1.0.5</version> <version>1.0.9</version>
<packaging>maven-archetype</packaging> <packaging>maven-archetype</packaging>
<build> <build>
...@@ -12,9 +12,24 @@ ...@@ -12,9 +12,24 @@
<extension> <extension>
<groupId>org.apache.maven.archetype</groupId> <groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId> <artifactId>archetype-packaging</artifactId>
<version>3.1.1</version> <version>3.2.1</version>
</extension> </extension>
</extensions> </extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<useDefaultExcludes>false</useDefaultExcludes>
</configuration>
</plugin>
</plugins>
</build> </build>
<repositories> <repositories>
...@@ -24,7 +39,7 @@ ...@@ -24,7 +39,7 @@
<url>https://artifactory.cs.vsb.cz/archetypes</url> <url>https://artifactory.cs.vsb.cz/archetypes</url>
</repository> </repository>
</repositories> </repositories>
<distributionManagement> <distributionManagement>
<snapshotRepository> <snapshotRepository>
<id>vsb-archetypes-releases</id> <id>vsb-archetypes-releases</id>
......
...@@ -4,6 +4,13 @@ ...@@ -4,6 +4,13 @@
xsi:schemaLocation="https://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.1.0 https://maven.apache.org/xsd/archetype-descriptor-1.1.0.xsd" xsi:schemaLocation="https://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.1.0 https://maven.apache.org/xsd/archetype-descriptor-1.1.0.xsd"
name="javafx-quickstart"> name="javafx-quickstart">
<fileSets> <fileSets>
<fileSet filtered="true" encoding="UTF-8">
<directory></directory>
<includes>
<include>.gitignore</include>
<include>pom.xml</include>
</includes>
</fileSet>
<fileSet filtered="true" packaged="true"> <fileSet filtered="true" packaged="true">
<excludes> <excludes>
<exclude>module-info.java</exclude> <exclude>module-info.java</exclude>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment