Skip to content

Commit

Permalink
Combine repo locations, and update gitignore and gitattributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Spragg committed Jan 26, 2014
1 parent 5504b5c commit fb1e777
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
# Binary files that should not be modified
*.dat binary
*.db binary
*.gif binary
*.icns binary
*.ico binary
*.key binary
*.jks binary
*.jpg binary
*.key binary
*.png binary
*.ttf binary
*.wav binary
Expand Down
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ build
dist
lib
out
run
target
*.com
*.class
Expand All @@ -28,10 +29,13 @@ target
############
*.7z
*.dmg
*.ear
*.gz
*.iso
*.jar
*.rar
*.tar
*.war
*.zip

# Repository #
Expand All @@ -46,6 +50,7 @@ target
# Misc #
########
*.bak
*.tmp

# System #
##########
Expand All @@ -55,7 +60,9 @@ Thumbs.db

# Project #
###########
.buildpath
.classpath
.cproject
.externalToolBuilders
.gradle
.idea
Expand All @@ -68,3 +75,6 @@ nb-configuration.xml
*.iml
*.ipr
*.iws
*.launch
*.pydevproject

16 changes: 4 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,8 @@
<!-- Dependency repositories -->
<repositories>
<repository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<id>sonatype-nexus</id>
<url>https://oss.sonatype.org/content/repositories/public</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
Expand All @@ -98,12 +94,8 @@
<!-- Build plugin repositories -->
<pluginRepositories>
<pluginRepository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</pluginRepository>
<pluginRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<id>sonatype-nexus</id>
<url>https://oss.sonatype.org/content/repositories/public</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
Expand Down

0 comments on commit fb1e777

Please sign in to comment.