Skip to content

Commit

Permalink
add web profile to jsonb-tck runner (#1917)
Browse files Browse the repository at this point in the history
  • Loading branch information
alwin-joseph authored Feb 11, 2025
1 parent e7f5d35 commit ce4244d
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion glassfish-runner/jsonb-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<artifactItems>
<artifactItem>
<groupId>org.glassfish.main.distributions</groupId>
<artifactId>glassfish</artifactId>
<artifactId>${glassfish-artifact-id}</artifactId>
<version>${glassfish.version}</version>
<type>zip</type>
<overWrite>false</overWrite>
Expand Down Expand Up @@ -124,4 +124,24 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>full</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<glassfish-artifact-id>glassfish</glassfish-artifact-id>
</properties>
</profile>

<profile>
<id>web</id>
<properties>
<glassfish-artifact-id>web</glassfish-artifact-id>
</properties>
</profile>
</profiles>

</project>

0 comments on commit ce4244d

Please sign in to comment.