Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Aries SpiFly 1.2-SNAPSHOT testing

Hi Raymond,

I tested with spifly 1.2-SNAPSHOT and it seems to work fine. 
Note, however, that I still needed to exclude felix and asm from the dependency in order for the pax-exam test framework to be happy:

    <dependency>
     <groupId>org.apache.aries.spifly</groupId>
      <artifactId>org.apache.aries.spifly.dynamic.bundle</artifactId>
      <version>1.2-SNAPSHOT</version>
     <scope>test</scope>
     <exclusions>
         <exclusion>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.framework</artifactId>
         </exclusion>
         <exclusion>
             <groupId>org.ow2.asm</groupId>
             <artifactId>asm-util</artifactId>
         </exclusion>
     </exclusions>
    </dependency>

If you need me to test something specific, let me know.

cheers
Jan

On Wed, 14 Nov 2018 at 18:56, Raymond Auge <raymond.auge@xxxxxxxxxxx> wrote:
Hello everyone,

Recently we've had some updates to Apache Aries SpiFly around ASM 7 and Java 11 and I know Jetty has had struggles with it.

I have a new 1.2-SNAPSHOT [1] I would like to test against jetty before releasing. However I cannot successfully run the build on either Java 8 or Java 11 (at HEAD of jetty-9.4.x) no matter what I try (it always fails in websocket client tests).

]$ mvn -version
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T14:33:14-04:00)
Maven home: /home/rotty/bin/maven/apache-maven-latest
Java version: 11.0.1, vendor: Azul Systems, Inc., runtime: /usr/lib/jvm/zulu-11-amd64
Default locale: en_CA, platform encoding: UTF-8
OS name: "linux", version: "4.15.0-39-generic", arch: "amd64", family: "unix"

I'm wondering if someone could maybe run the tests to check this version (need to add Apache Snapshots repo:
                <repository>
                        <id>apache-snapshots</id>
                        <url>https://repository.apache.org/content/groups/snapshots/</url>
                        <layout>default</layout>
                </repository>
)
OR
assist me in resolving the build issues?

Sincerely,
- Ray


--
Raymond Augé (@rotty3000)
Senior Software Architect Liferay, Inc. (@Liferay)
Board Member & EEG Co-Chair, OSGi Alliance (@OSGiAlliance)
_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/jetty-dev


--
Jan Bartel <janb@xxxxxxxxxxx>
www.webtide.com
Expert assistance from the creators of Jetty and CometD


Back to the top