diff options
author | root <ha076r@att.com> | 2017-03-08 12:41:16 -0500 |
---|---|---|
committer | root <ha076r@att.com> | 2017-03-08 12:46:01 -0500 |
commit | 055775826b2406aac33d1fc21b070553f8167330 (patch) | |
tree | b0a960ebbf09396717179423d5ad093c880086d2 | |
parent | 32cbcd6356e1ee529f2ddd7d6b50a85a3f4e174a (diff) |
Add gitignore & explicit plugin version
Change-Id: Ice64021a3dc44d4dc4c6a7c56858b2ea406cb815
Signed-off-by: root <ha076r@att.com>
-rw-r--r-- | .gitignore | 56 | ||||
-rw-r--r-- | installation/appc/pom.xml | 2 |
2 files changed, 58 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fb98f84 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +#####standard .git ignore entries##### + +## IDE Specific Files ## +org.eclipse.core.resources.prefs +.classpath +.project +.settings +.idea +.externalToolBuilders +maven-eclipse.xml +workspace + +# Used to not upload Blackduck Scans +**/*.jsonld +**/blackDuckHubProjectName.txt +**/blackDuckHubProjectVersionName.txt + +## Compilation Files ## +*.class +**/target +target +target-ide +MANIFEST.MF + +## Misc Ignores (OS specific etc) ## +bin/ +dist +*~ +*.ipr +*.iml +*.iws +classes +out/ +.DS_STORE +.metadata + +## antlr4 generated files ## +ExprGrammarBaseListener.java +ExprGrammarLexer.java +ExprGrammarListener.java +ExprGrammarParser.java +ExprGrammar.tokens +ExprGrammarLexer.tokens + +# BlackDuck generated file +sdnc-oam_bdio.jsonld + +#Chef local mode cache +local-mode-cache + +# Generated local docker image +**/docker-files/opt +**/src/main/resources/opt + +#dgbuilder releases +**/dgbuilder/releases diff --git a/installation/appc/pom.xml b/installation/appc/pom.xml index ee8242d..b88d3d3 100644 --- a/installation/appc/pom.xml +++ b/installation/appc/pom.xml @@ -139,6 +139,7 @@ <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> + <version>1.5.0</version> <executions> <execution> <id>Get features</id> @@ -314,6 +315,7 @@ <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> + <version>1.5.0</version> <executions> <execution> <id>Get features</id> |