Skip to content

Commit

Permalink
With the introduction of the separate test module we need to skip dep…
Browse files Browse the repository at this point in the history
…loy it since it is only for testing.
  • Loading branch information
vegegoku committed Nov 2, 2023
1 parent 3d4304d commit 599e318
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 599e318

Please sign in to comment.