Skip to content

Commit 0dab8bd

Browse files
authored
build: 1.0.0-RC2-SNAPSHOT (Travis Build 860) (#274)
1 parent 9660e59 commit 0dab8bd

File tree

3 files changed

+20
-27
lines changed

3 files changed

+20
-27
lines changed

graphql-kotlin-schema-generator/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>com.expedia</groupId>
87
<artifactId>graphql-kotlin</artifactId>
9-
<version>1.0.0-RC1-SNAPSHOT</version>
8+
<version>1.0.0-RC2-SNAPSHOT</version>
109
<relativePath>..</relativePath>
1110
</parent>
1211

graphql-kotlin-spring-example/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>com.expedia</groupId>
76
<artifactId>graphql-kotlin</artifactId>
8-
<version>1.0.0-RC1-SNAPSHOT</version>
7+
<version>1.0.0-RC2-SNAPSHOT</version>
98
<relativePath>..</relativePath>
109
</parent>
1110

pom.xml

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<groupId>com.expedia</groupId>
76
<artifactId>graphql-kotlin</artifactId>
8-
<version>1.0.0-RC1-SNAPSHOT</version>
7+
<version>1.0.0-RC2-SNAPSHOT</version>
98
<name>graphql-kotlin</name>
109
<description>Code-only GraphQL schema generation for Kotlin</description>
1110
<url>https://github.com/ExpediaDotCom/graphql-kotlin</url>
@@ -146,18 +145,16 @@
146145
<phase>validate</phase>
147146
<configuration>
148147
<target name="detekt">
149-
<java taskname="detekt" dir="${project.basedir}" fork="true" failonerror="true"
150-
classname="io.gitlab.arturbosch.detekt.cli.Main"
151-
classpathref="maven.plugin.classpath">
152-
<arg value="--fail-fast"/>
153-
<arg value="--input"/>
154-
<arg value="${project.basedir}${file.separator}src"/>
155-
<arg value="--config"/>
156-
<arg value="${project.parent.relativePath}${file.separator}detekt.yml"/>
157-
<arg value="--report"/>
158-
<arg value="html:${project.basedir}${file.separator}target${file.separator}site${file.separator}detekt.html"/>
159-
<arg value="--report"/>
160-
<arg value="xml:${project.basedir}${file.separator}target${file.separator}site${file.separator}detekt.xml"/>
148+
<java taskname="detekt" dir="${project.basedir}" fork="true" failonerror="true" classname="io.gitlab.arturbosch.detekt.cli.Main" classpathref="maven.plugin.classpath">
149+
<arg value="--fail-fast" />
150+
<arg value="--input" />
151+
<arg value="${project.basedir}${file.separator}src" />
152+
<arg value="--config" />
153+
<arg value="${project.parent.relativePath}${file.separator}detekt.yml" />
154+
<arg value="--report" />
155+
<arg value="html:${project.basedir}${file.separator}target${file.separator}site${file.separator}detekt.html" />
156+
<arg value="--report" />
157+
<arg value="xml:${project.basedir}${file.separator}target${file.separator}site${file.separator}detekt.xml" />
161158
</java>
162159
</target>
163160
</configuration>
@@ -170,12 +167,10 @@
170167
<phase>validate</phase>
171168
<configuration>
172169
<target name="ktlint">
173-
<java taskname="ktlint" dir="${project.basedir}" fork="true" failonerror="true"
174-
classname="com.github.shyiko.ktlint.Main"
175-
classpathref="maven.plugin.classpath">
176-
<arg value="src/**/*.kt"/>
177-
<arg value="--reporter=plain"/>
178-
<arg value="--reporter=checkstyle,output=${project.build.directory}/ktlint.xml"/>
170+
<java taskname="ktlint" dir="${project.basedir}" fork="true" failonerror="true" classname="com.github.shyiko.ktlint.Main" classpathref="maven.plugin.classpath">
171+
<arg value="src/**/*.kt" />
172+
<arg value="--reporter=plain" />
173+
<arg value="--reporter=checkstyle,output=${project.build.directory}/ktlint.xml" />
179174
</java>
180175
</target>
181176
</configuration>

0 commit comments

Comments
 (0)