Skip to content

Commit

Permalink
pipelinerepo
Browse files Browse the repository at this point in the history
  • Loading branch information
gclayburg committed Aug 12, 2021
1 parent 3835871 commit 9dc3b4f
Show file tree
Hide file tree
Showing 105 changed files with 5,639 additions and 16 deletions.
36 changes: 20 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,35 +1,39 @@
buildscript {
repositories {
ext.artifactory_resolve_url = project.properties['artifactory_resolve_url'] ?: 'ignorethisinvalidurltrymavencentralinstead'
maven {
url "${artifactory_resolve_url}"
}
mavenCentral()
}
repositories {
ext.artifactory_resolve_url = project.properties['artifactory_resolve_url'] ?: 'ignorethisinvalidurltrymavencentralinstead'
maven {
url "${artifactory_resolve_url}"
}
mavenCentral()
}
}

plugins {
id 'groovy'
id 'groovy'
}
//apply plugin: 'java'
group = 'com.gacme.policy'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
ext.artifactory_resolve_url = project.properties['artifactory_resolve_url'] ?: 'ignorethisinvalidurltrymavencentralinstead'
repositories {
maven {
maven {
// allowInsecureProtocol = true // required by gradle 7+ only
url "${artifactory_resolve_url}"
}
mavenCentral()
url "${artifactory_resolve_url}"
}
mavenCentral()
maven {
url "pipelinerepo"
}
}

configurations.all {
resolutionStrategy.cacheChangingModulesFor 4, 'minutes' // I want to make sure to try to download the latest snapshot, i.e. scanrunner under development
resolutionStrategy.cacheChangingModulesFor 4, 'minutes'
// I want to make sure to try to download the latest snapshot, i.e. scanrunner under development
}

dependencies {
implementation('com.garyclayburg:scanrunner:0.8.3')
implementation('org.codehaus.groovy:groovy-all:2.4.16') //matches groovy-all nested dependency of spock-core
testImplementation(group: 'org.spockframework', name: 'spock-core', version:'1.1-groovy-2.4-rc-2')
implementation('com.garyclayburg:stepsapi:0.8.4-SNAPSHOT')
implementation('org.codehaus.groovy:groovy-all:2.4.16') //matches groovy-all nested dependency of spock-core
testImplementation(group: 'org.spockframework', name: 'spock-core', version: '1.1-groovy-2.4-rc-2')
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>com.garyclayburg</groupId>
<artifactId>stepsapi</artifactId>
<version>0.8.4-SNAPSHOT</version>
<versioning>
<snapshot>
<timestamp>20210812.185605</timestamp>
<buildNumber>1</buildNumber>
</snapshot>
<lastUpdated>20210812185605</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<extension>jar</extension>
<value>0.8.4-20210812.185605-1</value>
<updated>20210812185605</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>0.8.4-20210812.185605-1</value>
<updated>20210812185605</updated>
</snapshotVersion>
<snapshotVersion>
<classifier>javadoc</classifier>
<extension>jar</extension>
<value>0.8.4-20210812.185605-1</value>
<updated>20210812185605</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
be22922b0439430e72fa061c3b01cc9b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1a405afb462e6388a3c7e824bea3fe01c0000ec0
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
42bf1afc659b8d954e61c6de0127a12b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dbd32facfbf9d4b48fd733afdfe8f79f1b3d92a8
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8109bc8604a20f3881dbf1824f46975c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e9e028768e1f11dedd3c53f8630586657b25d44a
Original file line number Diff line number Diff line change
@@ -0,0 +1,267 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.garyclayburg</groupId>
<artifactId>stepsapi</artifactId>
<version>0.8.4-SNAPSHOT</version>
<name>visualsync stepsapi</name>
<description>DSL steps api and execution engine</description>
<developers>
<developer>
<id>gclayburg</id>
<name>Gary Clayburg</name>
<email>@garyclayburg</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.11.2</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-mongodb</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>mongo-java-driver</artifactId>
<groupId>*</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.16</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.javers</groupId>
<artifactId>javers-spring-boot-starter-mongo</artifactId>
<version>3.11.2</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jongo</groupId>
<artifactId>jongo</artifactId>
<version>1.4.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.unboundid.product.scim2</groupId>
<artifactId>scim2-sdk-client</artifactId>
<version>2.3.3-SNAPSHOT</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.25.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.security</groupId>
<artifactId>oauth2-client</artifactId>
<version>2.25.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
<version>2.25.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.ivy</groupId>
<artifactId>ivy</artifactId>
<version>2.3.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>4.1.3</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.21.RELEASE</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
196a8ec6fbd970f3bea91a3761d17d9a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9d67345c6d5d56289711f99e6e9b3c0febb350e9
11 changes: 11 additions & 0 deletions pipelinerepo/com/garyclayburg/stepsapi/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>com.garyclayburg</groupId>
<artifactId>stepsapi</artifactId>
<versioning>
<versions>
<version>0.8.4-SNAPSHOT</version>
</versions>
<lastUpdated>20210812185605</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
48b53474f560e8354ffe3274eae39726
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
73a87e717a665d73893e8bc97913cecbd8745d9e
Loading

0 comments on commit 9dc3b4f

Please sign in to comment.