Closed Jenfong closed 11 months ago
I just upload the thirdparty dependence resources to my local Nexus Repository
.
then update pom.xml maven-dependency-plugin
instead of download-maven-plugin
,
config as follow:
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>retrieve-jitsimeet-webclient</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.local.thirdparty.jitsimeet-webclient</groupId>
<artifactId>jitsi-meet</artifactId>
<version>1.0.6991</version>
<type>tar.bz2</type>
<overWrite>true</overWrite>
<outputDirectory>${project.basedir}/classes</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>retrieve-pade-webclient</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.local.thirdparty.pade-webclient</groupId>
<artifactId>docs</artifactId>
<version>2.1.4.2</version>
<type>zip</type>
<overWrite>true</overWrite>
<outputDirectory>${project.basedir}/classes/docs</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
version: openfire-pade-plugin-1.7.7 error: maven compile failed
openfire-pade-plugin-1.7.7/classes/docs/docs-2.1.4.2.zip: archive is not a ZIP archive
https://igniterealtime.github.io/pade/docs-2.1.4.2.zip
is missing I checkpade
,found @deleolajide just upgradedpade
to version2.1.5
Shall we will archivedocs-2.1.4.2.zip
in pade? or synchronous upgrade to docs-2.1.5.1.zip in 'openfire-pade-plugin' .