forked from BLOCKFANTASY/LOOHP-Limbo
Added simple gitignore and maven now generates sources
This commit is contained in:
parent
3fecd768f3
commit
839b87e4ba
|
|
@ -0,0 +1,9 @@
|
|||
# IntelliJ IDEA
|
||||
*.iml
|
||||
.idea/
|
||||
|
||||
# Maven
|
||||
target/
|
||||
|
||||
# Mac OS
|
||||
.DS_Store
|
||||
15
pom.xml
15
pom.xml
|
|
@ -101,6 +101,21 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.2.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-sources</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<finalName>${project.artifactId}-${project.version}-1.17.1</finalName>
|
||||
</build>
|
||||
|
|
|
|||
Loading…
Reference in New Issue