diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7f69afd3afc7416f82c934795d8386cce4e5ed5e --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Eclipse +.classpath +.project +.settings/ + +# Intellij +.idea/ +*.iml +*.iws + +# Mac +.DS_Store + +# Maven +log/ +target/ \ No newline at end of file diff --git a/pom.xml b/pom.xml index c89cfdc0d75484ed1323393cd37dfb582f49bc37..c982241453232b76d2be4c49f73507feb8c10d2e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>cz.vsb.fei.java2</groupId> <artifactId>javafx-quickstart</artifactId> - <version>1.0.0</version> + <version>1.0.1</version> <packaging>maven-archetype</packaging> <build> @@ -17,4 +17,23 @@ </extensions> </build> + <repositories> + <repository> + <id>vsb-archetypes</id> + <name>vsb-archetypes</name> + <url>https://artifactory.cs.vsb.cz/archetypes</url> + </repository> + </repositories> + + <distributionManagement> + <snapshotRepository> + <id>vsb-archetypes-repository-releases</id> + <url>https://artifactory.cs.vsb.cz/repository/archetype-snapshots/</url> + </snapshotRepository> + <repository> + <id>vsb-archetypes-repository-snapshots</id> + <url>https://artifactory.cs.vsb.cz/repository/archetype-releases/</url> + </repository> + </distributionManagement> + </project>