Skip to content

Commit

Permalink
Skip deploy test project (#96)
Browse files Browse the repository at this point in the history
With the introduction of the separate test module we need to skip deploy
it since it is only for testing.
  • Loading branch information
vegegoku authored Nov 7, 2023
1 parent 9686937 commit c1fd2f8
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,6 @@

</properties>

<modules>
<module>jsinterop-ts-defs-processor</module>
<module>jsinterop-ts-defs-annotations</module>
<module>jsinterop-ts-defs-impl</module>
<module>jsinterop-ts-defs-doclet</module>
<module>jsinterop-ts-defs-test</module>
</modules>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -200,8 +192,27 @@
</plugins>
</build>
<profiles>
<profile>
<id>env-dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>jsinterop-ts-defs-processor</module>
<module>jsinterop-ts-defs-annotations</module>
<module>jsinterop-ts-defs-impl</module>
<module>jsinterop-ts-defs-doclet</module>
<module>jsinterop-ts-defs-test</module>
</modules>
</profile>
<profile>
<id>release</id>
<modules>
<module>jsinterop-ts-defs-processor</module>
<module>jsinterop-ts-defs-annotations</module>
<module>jsinterop-ts-defs-impl</module>
<module>jsinterop-ts-defs-doclet</module>
</modules>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit c1fd2f8

Please sign in to comment.