Created
February 3, 2017 11:19
-
-
Save lwiechec/96395b715bde4ac4305628058400156a to your computer and use it in GitHub Desktop.
sample pom.clj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defmaven 'sample/csd-publisher "1.0-SNAPSHOT" | |
| :model-version "4.0.0" | |
| :parent [ 'sample/pom :version "LATEST" ] | |
| :packaging "jar" | |
| :name "Simple CSD Publisher webapp" | |
| :url "http://goo.com/csd-publisher-web" | |
| :properties { | |
| :project.build.sourceEncoding "UTF-8" | |
| :java.version "1.7" | |
| :metrics.version "3.1.0" | |
| } | |
| :provided-dependencies [[ 'javax.servlet/javax.servlet-api "3.0.1"]] | |
| :dependencies [[ 'org.slf4j/slf4j-api "1.7.22" ] | |
| [ 'ch.qos.logback/logback-classic "1.1.9" ] | |
| [ 'io.dropwizard.metrics/metrics-core "${metrics.version}" ]] | |
| :build [ | |
| :finalName "${project.artifactId}-${project.version}" | |
| :plugins [[ 'org.apache.tomcat.maven/tomcat7-maven-plugin "2.0" ] | |
| [ 'org.apache.maven.plugins/maven-war-plugin "2.3" | |
| :configuration [ :failOnMissingWebXml false ]] | |
| ]] | |
| :repositories [[:id "majiic-nexus-releases" | |
| :url "http://nexus.nu.majiic/repository/majiic-releases" | |
| :releases {:enabled true} | |
| :snapshots {:enabled false} | |
| :layout "default" ] | |
| [:id "majiic-nexus-snapshots" :url "http://nexus.nu.majiic/repository/majiic-snapshots" | |
| :releases {:enabled false} | |
| :snapshots {:enabled true} | |
| :layout "default"]] | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment