Skip to content

Commit 5124b41

Browse files
committed
added kotlin-ktor module to the build
1 parent c61986e commit 5124b41

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

pom.xml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,34 @@
375375
</arguments>
376376
</configuration>
377377
</execution>
378+
<execution>
379+
<id>build-kotlin-ktor</id>
380+
<phase>none</phase>
381+
<goals>
382+
<goal>exec</goal>
383+
</goals>
384+
<configuration>
385+
<workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory>
386+
<executable>./gradlew</executable>
387+
<arguments>
388+
<argument>build</argument>
389+
</arguments>
390+
</configuration>
391+
</execution>
392+
<execution>
393+
<id>test-kotlin-ktor</id>
394+
<phase>none</phase>
395+
<goals>
396+
<goal>exec</goal>
397+
</goals>
398+
<configuration>
399+
<workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory>
400+
<executable>./gradlew</executable>
401+
<arguments>
402+
<argument>test</argument>
403+
</arguments>
404+
</configuration>
405+
</execution>
378406
</executions>
379407
</plugin>
380408

@@ -606,6 +634,20 @@
606634
<groupId>org.codehaus.mojo</groupId>
607635
<artifactId>exec-maven-plugin</artifactId>
608636
<executions>
637+
<execution>
638+
<id>build-gradle-kotlin-dsl</id>
639+
<phase>compile</phase>
640+
<goals>
641+
<goal>exec</goal>
642+
</goals>
643+
<configuration>
644+
<workingDirectory>${rootproject.basedir}/gradle-kotlin-dsl</workingDirectory>
645+
<executable>./gradlew</executable>
646+
<arguments>
647+
<argument>build</argument>
648+
</arguments>
649+
</configuration>
650+
</execution>
609651
<execution>
610652
<id>test-gradle-kotlin-dsl</id>
611653
<phase>test</phase>
@@ -676,6 +718,34 @@
676718
</arguments>
677719
</configuration>
678720
</execution>
721+
<execution>
722+
<id>build-kotlin-ktor</id>
723+
<phase>compile</phase>
724+
<goals>
725+
<goal>exec</goal>
726+
</goals>
727+
<configuration>
728+
<workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory>
729+
<executable>./gradlew</executable>
730+
<arguments>
731+
<argument>build</argument>
732+
</arguments>
733+
</configuration>
734+
</execution>
735+
<execution>
736+
<id>test-kotlin-ktor</id>
737+
<phase>test</phase>
738+
<goals>
739+
<goal>exec</goal>
740+
</goals>
741+
<configuration>
742+
<workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory>
743+
<executable>./gradlew</executable>
744+
<arguments>
745+
<argument>test</argument>
746+
</arguments>
747+
</configuration>
748+
</execution>
679749
</executions>
680750
</plugin>
681751
</plugins>

0 commit comments

Comments
 (0)