openvidu-java-client: Create 'performJarFileRelease' maven profile to build openvidu-java-client builds in a jar file for nightlies

pull/803/head
cruizba 2023-04-10 23:43:01 +02:00
parent 805c1bdb47
commit af31380bbd
2 changed files with 33 additions and 0 deletions

View File

@ -190,6 +190,38 @@
</build> </build>
</profile> </profile>
<profile>
<id>build-jar-with-dependencies</id>
<activation>
<property>
<name>performJarFileRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${version.assembly.plugin}</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles> </profiles>
</project> </project>

View File

@ -67,6 +67,7 @@
<version.enforcer.plugin>3.1.0</version.enforcer.plugin> <version.enforcer.plugin>3.1.0</version.enforcer.plugin>
<version.extra.enforcer.rules.plugin>1.6.1</version.extra.enforcer.rules.plugin> <version.extra.enforcer.rules.plugin>1.6.1</version.extra.enforcer.rules.plugin>
<version.source.plugin>3.2.1</version.source.plugin> <version.source.plugin>3.2.1</version.source.plugin>
<version.assembly.plugin>3.3.0</version.assembly.plugin>
<version.surefire.plugin>3.0.0-M7</version.surefire.plugin> <version.surefire.plugin>3.0.0-M7</version.surefire.plugin>
<version.gpg.plugin>1.6</version.gpg.plugin> <version.gpg.plugin>1.6</version.gpg.plugin>
<version.nexus.staging.plugin>1.6.13</version.nexus.staging.plugin> <version.nexus.staging.plugin>1.6.13</version.nexus.staging.plugin>