aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
AgeCommit message (Expand)AuthorFilesLines
2018-03-19Use updated ONAP SO/libs artifactsArthur Martella1-1/+1
2018-03-19Merge "Fix the Jar vulnerability and licensing"Seshu Kumar M1-1/+1
2018-03-19Fix the Jar vulnerability and licensingByung-Woo Jun1-1/+1
2018-03-16Upgrade to latest oparentGildas Lanilis1-1/+1
2018-03-14AT&T 1712 and 1802 release codeRob Daugherty1-1/+174
2018-03-09Pom parents fixed in aria build.dfilppi1-1/+1
2018-03-07Fix Aria compilation issuesubhash kumar singh1-1/+1
2018-03-02Revert previous Test commitRob Daugherty1-1/+0
2018-03-02Merge "Test commit in Test branch"Rob Daugherty1-1/+1
2018-03-02Test commit in Test branchArthur Martella1-1/+1
2018-02-23Add ARIA subtree to builddfilppi1-1/+1
2018-02-22Port SO artifacts to ONAP folder structureArthur Martella1-1/+1
2018-01-03Fix the compilation issue.seshukm1-1/+1
2017-12-27Added back commented modulesdfilppi1-2/+2
2017-12-26Added module to build for aria-rest-serverdfilppi1-2/+3
2017-12-01Bump minor versionJessica Wagantall1-4/+4
2017-11-16changed artifact versionseshukm1-1/+2
2017-10-31Initial commit for the docker build issueseshukm1-1/+2
2017-10-08Fixes for sonar coverage in bpmnRob Daugherty1-3/+7
2017-09-29Fix the SO build issuesDeterme, Sebastien (sd378r)1-403/+405
2017-09-27Update POM to inherit from oparentRob Daugherty1-0/+8
2017-09-13Remove maven-license-plugin from pom.xmlRob Daugherty1-39/+0
2017-09-11Merge "Cleanup project's name in Sonar"Seshu Kumar M1-1/+1
2017-09-08Cleanup project's name in SonarJessica Wagantall1-1/+1
2017-09-081710 Rebase - Second AttemptArthur Martella1-27/+5
2017-08-04Another attempt to fix deploy problemRob Daugherty1-1/+1
2017-08-04Failed to deploy so artifacts in nexus (again)Rob Daugherty1-1/+1
2017-08-01Failed to deploy so artifacts in nexusRob Daugherty1-2/+2
2017-07-20More pom changes needed since repos were renamedRob Daugherty1-1/+1
2017-07-19Fix artifact group IDs (org.openecomp.so)Rob Daugherty1-2/+2
2017-05-03Using onap instead of openecomp in doc pathAnaël Closson1-1/+1
2017-04-25Add a repository to fix maven buildDeterme, Sebastien (sd378r)1-1/+7
2017-04-11[MSO-8] Update the maven dependencyxg353y1-10/+5
2017-03-29Update domain URLs from openecomp.org to onap.orgAndrew Grimberg1-2/+2
2017-03-13Update to version 1.1.0ChrisC1-1/+1
2017-03-09Update configuration for maven siteAnaël Closson1-2/+3
2017-03-08Adding tagging to our staging imagesJulienBe1-0/+1
2017-02-20Dynamic and configurable paths for distributionDeterme, Sebastien (sd378r)1-3/+5
2017-02-15Move Nexus URL base to a propertyAndrew Grimberg1-5/+6
2017-02-14Added Staging maven repoeh552t1-0/+5
2017-02-07Use nexus staging repo for deploymentsAnaël Closson1-0/+14
2017-02-07Indentation cleanupAnaël Closson1-158/+132
2017-02-06Moving from ecomp-nexus to nexus.openecompJulienBe1-10/+3
2017-02-06Use nexus.openecomp.org as default for mvn repoJulienBe1-6/+6
2017-01-31Initial OpenECOMP MSO commitChrisC1-0/+473
<useUniqueVersions>false</useUniqueVersions> <classpathMavenRepositoryLayout>true</classpathMavenRepositoryLayout> </manifest> <manifestEntries> <Class-Path>config/ cert/</Class-Path> </manifestEntries> </archive> </configuration> </plugin> <!-- Copy all dependencies --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> <useBaseVersion>true</useBaseVersion> <useRepositoryLayout>true</useRepositoryLayout> <excludeArtifactIds>yang-jmx-generator</excludeArtifactIds> </configuration> </execution> <execution> <id>unpack-configuration</id> <phase>prepare-package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includes>**/honeycomb-minimal-resources/</includes> <outputDirectory>${project.build.outputDirectory}/</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- Generate shell script --> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>groovy-maven-plugin</artifactId> <version>2.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>execute</goal> </goals> <configuration> <!-- TODO add remote debug option --> <!-- TODO add clean option --> <!-- TODO add shutdown script --> <!-- TODO add restart script --> <!-- TODO pass options to JVM? --> <source> import java.nio.file.Paths log.info "Generating shell exec script" def scriptTemplate = properties.getOrDefault("start.script.template", "") def args = properties.getOrDefault("exec.parameters", "") log.debug "Additional shell exec script properties: ${args}" def javaArgs = "${args} -jar \$(dirname \$0)/${project.artifactId}-${project.version}.jar" def scriptParent = Paths.get(project.build.outputDirectory, "honeycomb-minimal-resources") scriptParent.toFile().mkdirs() def scriptContent = "java " + javaArgs log.info "Generating shell exec script as ${scriptContent}" def scriptPath = Paths.get(scriptParent.toString(), "honeycomb") log.info "Writing shell exec script to ${scriptPath}" scriptPath.toFile().text = String.format(scriptTemplate, scriptContent) scriptPath.toFile().setExecutable(true) scriptPath = Paths.get(scriptParent.toString(), "honeycomb-start") log.info "Writing shell exec script to ${scriptPath}" scriptPath.toFile().text = "\$(dirname \$0)/honeycomb &amp;" scriptPath.toFile().setExecutable(true) def debug_args = properties.getOrDefault("debug.parameters", "") def debugScriptContent = "java" + " ${debug_args} " + javaArgs log.info "Generating shell debug script as ${debugScriptContent}" scriptPath = Paths.get(scriptParent.toString(), "honeycomb-debug") log.info "Writing shell debug script to ${scriptPath}" scriptPath.toFile().text = String.format(scriptTemplate, debugScriptContent) scriptPath.toFile().setExecutable(true) </source> </configuration> </execution> </executions> </plugin> <!-- Build archives --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.3</version> <dependencies> <dependency> <groupId>io.fd.honeycomb.common</groupId> <artifactId>minimal-assembly-descriptor</artifactId> <version>1.16.9</version> </dependency> </dependencies> <executions> <execution> <id>create-archive</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>honeycomb-minimal</descriptorRef> </descriptorRefs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <phase>none</phase> </execution> </executions> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>