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

build: add gitignore and deployment repository

parent 84aafd73
No related merge requests found
Pipeline #992 failed with stages
in 0 seconds
# Eclipse
.classpath
.project
.settings/
# Intellij
.idea/
*.iml
*.iws
# Mac
.DS_Store
# Maven
log/
target/
\ No newline at end of file
...@@ -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.0</version> <version>1.0.1</version>
<packaging>maven-archetype</packaging> <packaging>maven-archetype</packaging>
<build> <build>
...@@ -17,4 +17,23 @@ ...@@ -17,4 +17,23 @@
</extensions> </extensions>
</build> </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> </project>
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