igniterealtime / openfire-pade-plugin

A plugin for Openfire that offers web-based unified communications - chat, groupchat, telephone, audio and video conferencing.
Apache License 2.0
58 stars 30 forks source link

version 1.7.7 maven compile failed as the pade-webclient's "docs-2.1.4.2.zip" is missing #466

Closed Jenfong closed 11 months ago

Jenfong commented 11 months ago

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 check pade ,found @deleolajide just upgraded pade to version 2.1.5 Shall we will archive docs-2.1.4.2.zip in pade? or synchronous upgrade to docs-2.1.5.1.zip in 'openfire-pade-plugin' .

deleolajide commented 11 months ago

I have updated openfire-pade-plugin to 2.1.5 and restored the zip file for version 2.1.4

Jenfong commented 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>