Skip to content

Commit

Permalink
start working on maven structure
Browse files Browse the repository at this point in the history
  • Loading branch information
sgdc3 committed Apr 6, 2016
1 parent 343d38e commit 3865b38
Show file tree
Hide file tree
Showing 26 changed files with 921 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Set the charset, and space indention
[*.java]
charset = utf-8
indent_style = space
indent_size = 4
116 changes: 115 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,116 @@
### Java files ###
*.class

# Package Files
#*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*



### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
# Ignore project files
*.iml

# Ignore IDEA directory
.idea/*

# Include the project's code style settings file
!.idea/codeStyleSettings.xml

# Include the project's dictionary
!.idea/dictionaries/
!.idea/dictionaries/*

# File-based project format:
*.ipr
*.iws

### Plugin-specific files: ###
# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties



### Eclipse ###
*.pydevproject
.metadata
.gradle
bin/
.*
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath

# Eclipse Core
.project

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# JDT-specific (Eclipse Java Development Tools)
.classpath

# PDT-specific
.buildpath

# sbteclipse plugin
.target

# TeXlipse plugin
.texlipse



### Maven ###
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties



### NetBeans ###
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/



### Git ###
# Don't exclude the .gitignore itself
!.gitignore
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
sudo: false

language: java
jdk: oraclejdk7

cache:
directories:
- '$HOME/.m2/repository'

script:
- mvn dependency:purge-local-repository -DactTransitively=false -DreResolve=false
- mvn clean install -B -U

notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/952357dbd9d3cea70fd5
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
Loading

0 comments on commit 3865b38

Please sign in to comment.