changed relative location of root pom

This commit is contained in:
Dmitry Toptygin
2020-04-08 18:45:56 -04:00
parent 6eeb031a41
commit b2387b70fd
10 changed files with 8 additions and 48 deletions

View File

@@ -5,7 +5,7 @@
<groupId>com.telecominfraproject.wlan</groupId>
<artifactId>tip-wlan-cloud-root-pom</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../tip-wlan-cloud-root</relativePath>
<relativePath>../wlan-cloud-root</relativePath>
</parent>
<artifactId>tip-wlan-cloud-workspace-all-modules-build</artifactId>
@@ -22,10 +22,10 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>../tip-wlan-cloud-root</module>
<module>../tip-wlan-cloud-base/base-build</module>
<module>../tip-wlan-cloud-services/cloud-services-build</module>
<module>../tip-wlan-opensync-wifi-controller/opensync-gateway-build</module>
<module>../wlan-cloud-root</module>
<module>../wlan-cloud-base/base-build</module>
<module>../wlan-cloud-services/cloud-services-build</module>
<module>../wlan-cloud-opensync-controller/opensync-gateway-build</module>
</modules>
</profile>
</profiles>

View File

@@ -1,31 +0,0 @@
image: maven:3.6.1
pipelines:
branches:
master: # Trigger this for any pushes to the master branch.
- step:
name: Build and Deploy Snapshot Artifact
trigger: manual # automatic
caches:
- maven # Cache any dependencies we download, speeds up build times.
script:
- bash configure_maven.sh # Create our settings.xml file. Will fail if environment variables aren't set properly.
- git submodule update --init
- mvn -B --file all-modules-build/pom.xml verify # Ensure all artifacts build successfully before we attempt deploy in order to prevent partial deploys.
- mvn -B --file all-modules-build/pom.xml -DskipTests deploy # Now that all builds have completed, we can deploy all the artifacts.
artifacts: # This will carry across the files you want to deploy to all subsequent steps
- tip-wlan-opensync-wifi-controller/opensync-gateway-static-process/target/opensync-gateway-static-process-0.0.1-SNAPSHOT.jar
- tip-wlan-cloud-services/all-cloud-in-one-process/target/all-cloud-in-one-process-0.0.1-SNAPSHOT.jar
- step:
name: Deploy to Test
image: aneitayang/aws-cli:1.0
deployment: Test
trigger: manual
script:
- echo "Deploying to test ..."
- aws --version
- echo "Deploying to Bitbucket Downloads"
- echo "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads"
- curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"tip-wlan-opensync-wifi-controller/opensync-gateway-static-process/target/opensync-gateway-static-process-0.0.1-SNAPSHOT.jar"
- curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"tip-wlan-cloud-services/all-cloud-in-one-process/target/all-cloud-in-one-process-0.0.1-SNAPSHOT.jar"

View File

@@ -1,9 +0,0 @@
#!/bin/bash
sed -i~ "/<servers>/ a\
<server>\
<id>io.cloudrepo</id>\
<username>${CLOUDREPO_USERNAME}</username>\
<password>${CLOUDREPO_PASSPHRASE}</password>\
</server>" /usr/share/maven/conf/settings.xml

Submodule tip-wlan-cloud-base deleted from 22103d6326

Submodule tip-wlan-cloud-services deleted from 334173d926

Submodule tip-wlan-opensync-wifi-controller deleted from 8f6cd9ef10

1
wlan-cloud-base Submodule

Submodule wlan-cloud-base added at 88144a7d34

1
wlan-cloud-services Submodule

Submodule wlan-cloud-services added at 9d70025596