aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn
AgeCommit message (Expand)AuthorFilesLines
2018-03-12Merge "Update the VFC NS resource recipe"Chuanyu Chen1-2/+2
2018-03-12Update the VFC NS resource recipec001491071-2/+2
2018-03-12add main updateInstance bpmn flowYulian Han1-0/+388
2018-03-10Merge "Remove redundant intValue"Seshu Kumar M1-1/+1
2018-03-09Simplify boolean expressions in groovyMunir Ahmad14-38/+38
2018-03-09Replace String concatination with chained appendMunir Ahmad1-1/+1
2018-03-09Remove redundant intValueMunir Ahmad1-1/+1
2018-03-09Merge "Update resource recipe parameter prepare logic"Rob Daugherty2-57/+134
2018-03-09Merge "Fix some Sonar Blockers in workflow/serviceTask"Rob Daugherty4-128/+70
2018-03-09Merge "Collapse catch clauses where applicable"Rob Daugherty2-13/+5
2018-03-09Revert Reduce log noise/warningsRob Daugherty96-17804/+17760
2018-03-09Collapse catch clauses where applicableMunir Ahmad2-13/+5
2018-03-09Remove redundant groupId inherited from parentMunir Ahmad4-4/+0
2018-03-09Merge "Reduce log noise/warnings format to conventions"Seshu Kumar M96-17760/+17804
2018-03-09Update resource recipe parameter prepare logicc001491072-57/+134
2018-03-09Merge "Support resource generic workflow Inputs"Chuanyu Chen1-0/+290
2018-03-09Support resource generic workflow Inputsc001491071-0/+290
2018-03-08Fix some Sonar Blockers in workflow/serviceTaskShashank Kumar Shankar4-128/+70
2018-03-08Reduce log noise/warnings format to conventionsMarcus G K Williams96-17760/+17804
2018-03-08Merge "Remove redundant String constructor calls"Seshu Kumar M1-1/+1
2018-03-08Merge "Remove redundant declaration of extending object"Seshu Kumar M1-1/+1
2018-03-08Merge "Remove unused code"Seshu Kumar M2-23/+0
2018-03-08Remove redundant String constructor callsMunir Ahmad1-1/+1
2018-03-08Remove redundant declaration of extending objectMunir Ahmad1-1/+1
2018-03-07Make use of lambdaMunir Ahmad1-8/+2
2018-03-07Remove unused codeMunir Ahmad2-23/+0
2018-03-07Merge "Swap indexOf with contains"Rob Daugherty2-12/+12
2018-03-07Merge "Store NB Create req. userParam - Customer_Location"Rob Daugherty5-774/+880
2018-03-07Merge "Remove redundant catch clause"Rob Daugherty2-12/+0
2018-03-07Merge "Fix javadoc"Rob Daugherty11-23/+19
2018-03-07Swap indexOf with containsMunir Ahmad2-12/+12
2018-03-07Remove unnecessary String constructor callMunir Ahmad2-3/+3
2018-03-07Merge "Support get resource recipe groovy common method"Chuanyu Chen1-0/+21
2018-03-07Support get resource recipe groovy common methodc001491071-0/+21
2018-03-06Store NB Create req. userParam - Customer_LocationMarcus G K Williams5-774/+880
2018-03-06Remove redundant catch clauseMunir Ahmad2-12/+0
2018-03-06Fix javadocMunir Ahmad11-23/+19
2018-03-06Merge "Replace StringBuilder with String & inline return"Seshu Kumar M3-27/+13
2018-03-06Replace explicit type with dimond typeMunir Ahmad41-99/+99
2018-03-06Merge "Make use of Map.getOrDefault"Seshu Kumar M1-6/+2
2018-03-06Replace StringBuilder with String & inline returnMunir Ahmad3-27/+13
2018-03-05Merge "Removed unreachable log"Seshu Kumar M1-398/+396
2018-03-05Removed unreachable logMunir Ahmad1-398/+396
2018-03-05Merge "Update generic create service workflow"Chuanyu Chen2-251/+410
2018-03-05Update generic create service workflowc001491072-251/+410
2018-03-02Make use of Map.getOrDefaultMunir Ahmad1-6/+2
2018-03-02Merge "Support decompose service by model uuid"Chuanyu Chen3-4/+16
2018-03-01Merge "Support query service resources by modeluuid"Chuanyu Chen1-0/+43
2018-03-01Support decompose service by model uuidc001491073-4/+16
2018-03-01Merge "Support Resource Recipe Common Model"Chuanyu Chen3-0/+416
ass="nt"><artifactId>mockito-kotlin</artifactId> <!-- It's unusual but 'compile' here is the right scope since mockito is being used at runtime by the UatServices (/api/v1/uat/spy and /api/v1/uat/verify endpoints) --> <scope>compile</scope> </dependency> <dependency> <groupId>com.schibsted.spt.data</groupId> <artifactId>jslt</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${apache.httpcomponents.client.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>${apache.httpcomponents.client.version}</version> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <version>2.25.0</version> <scope>test</scope> </dependency> <!-- END UAT --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> </dependencies> <build> <resources> <resource> <!--config and resource files --> <directory>${basedir}/etc</directory> <targetPath>${basedir}/target/etc</targetPath> <filtering>true</filtering> <includes> <include>**/*</include> </includes> </resource> <resource> <!--config and resource files --> <directory>${basedir}/src/main/resources</directory> <targetPath>${basedir}/target/src/main/resources</targetPath> <filtering>true</filtering> <includes> <include>**/*</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <!-- Sets the VM argument line used when unit tests are run. --> <argLine>-Xmx1024m -XX:MaxPermSize=256m ${surefireArgLine}</argLine> <!-- Excludes integration tests when unit tests are run. --> <excludes> <exclude>**/IT*.java</exclude> </excludes> <reuseForks>false</reuseForks> <forkCount>1</forkCount> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy-dockerfile</id> <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> <phase>validate</phase> <configuration> <outputDirectory>${basedir}/target/docker-stage</outputDirectory> <resources> <resource> <directory>src/main/docker</directory> <includes> <include>*</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>ant-test</id> <phase>package</phase> <configuration> <tasks> <fixcrlf srcdir="${basedir}" eol="unix" includes="**/*.sh, **/*.source"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin><!--build the final artifact for docker deployment --> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <configuration> <!-- <skipAssembly>${skip.assembly}</skipAssembly> --> <outputDirectory>${basedir}/target/docker-stage</outputDirectory> <descriptors> <descriptor>src/main/docker/distribution.xml</descriptor> </descriptors> <tarLongFileMode>posix</tarLongFileMode> </configuration> <executions> <execution> <id>${assembly.id}</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.groovy.maven</groupId> <artifactId>gmaven-plugin</artifactId> <version>1.0</version> <executions> <execution> <phase>validate</phase> <goals> <goal>execute</goal> </goals> <configuration> <source>${basedir}/../../../TagVersion.groovy</source> </configuration> </execution> </executions> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>docker</id> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.34.0</version> <inherited>false</inherited> <configuration> <images> <image> <name>${image.name}</name> <build> <cleanup>try</cleanup> <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir> <tags> <tag>${project.docker.latestminortag.version}</tag> <tag>${project.docker.latestfulltag.version}</tag> <tag>${project.docker.latesttagtimestamp.version}</tag> </tags> </build> </image> </images> <verbose>${docker.verbose}</verbose> <skipPush>${docker.skip.push}</skipPush> </configuration> <executions> <execution> <id>build-push-images</id> <phase>${docker.push.phase}</phase> <goals> <goal>build</goal> <goal>push</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>