mirror of https://github.com/OpenVidu/openvidu.git
openvidu-java-client: Create 'performJarFileRelease' maven profile to build openvidu-java-client builds in a jar file for nightlies
parent
805c1bdb47
commit
af31380bbd
|
@ -190,6 +190,38 @@
|
|||
</build>
|
||||
</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>
|
||||
|
||||
</project>
|
||||
|
|
1
pom.xml
1
pom.xml
|
@ -67,6 +67,7 @@
|
|||
<version.enforcer.plugin>3.1.0</version.enforcer.plugin>
|
||||
<version.extra.enforcer.rules.plugin>1.6.1</version.extra.enforcer.rules.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.gpg.plugin>1.6</version.gpg.plugin>
|
||||
<version.nexus.staging.plugin>1.6.13</version.nexus.staging.plugin>
|
||||
|
|
Loading…
Reference in New Issue