HI Andrew, This was found in the release and https://issues.apache.org/jira/browse/DELTASPIKE-1257 created to work through the problem.
John On Wed, Jun 21, 2017 at 8:42 AM Andrew Marinchuk <[email protected]> wrote: > Hi! > > After switching to deltaspike verison 1.8.1-SNAPSHOT, we've obtained a > warning message in eclipse to the version in openwebbeans dependencies. > Some investigations shows that pom.xml for groupId > org.apache.deltaspike.distribution and artifactId distributions-bom > declares version 1.2.7 for openwebbeans. Looks like typing error, should be > 1.7.2. Previous deltaspike version (1.7.2) works with openwebbeans 1.7.2 > and deltaspike 1.8.1-SNAPSHOT seems too. > > Here is part of our pom.xml: > > <properties> > <!--deltaspike.version>1.7.2</deltaspike.version--> > <deltaspike.version>1.8.1-SNAPSHOT</deltaspike.version> > <owb.version>1.7.2</owb.version> > </properties> > <dependencyManagement> > <dependencies> > <dependency> > > <groupId>org.apache.deltaspike.distribution</groupId> > <artifactId>distributions-bom</artifactId> > <version>${deltaspike.version}</version> > <type>pom</type> > <scope>import</scope> > </dependency> > </dependencies> > </dependencyManagement> > <dependencies> > <dependency> > <groupId>org.apache.geronimo.specs</groupId> > <artifactId>geronimo-atinject_1.0_spec</artifactId> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.geronimo.specs</groupId> > <artifactId>geronimo-jcdi_1.1_spec</artifactId> > <version>1.0</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.geronimo.specs</groupId> > > <artifactId>geronimo-interceptor_1.2_spec</artifactId> > <version>1.0</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.geronimo.specs</groupId> > > <artifactId>geronimo-annotation_1.2_spec</artifactId> > <version>1.0</version> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.openwebbeans</groupId> > <artifactId>openwebbeans-spi</artifactId> > <version>${owb.version}</version> <!-- Warning at > this line --> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.openwebbeans</groupId> > <artifactId>openwebbeans-impl</artifactId> > <version>${owb.version}</version> <!-- Warning at > this line --> > <scope>runtime</scope> > </dependency> > <dependency> > <groupId>org.apache.deltaspike.core</groupId> > <artifactId>deltaspike-core-api</artifactId> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.deltaspike.core</groupId> > <artifactId>deltaspike-core-impl</artifactId> > <scope>runtime</scope> > </dependency> > <dependency> > <groupId>org.apache.deltaspike.cdictrl</groupId> > <artifactId>deltaspike-cdictrl-api</artifactId> > <scope>compile</scope> > </dependency> > <dependency> > <groupId>org.apache.deltaspike.cdictrl</groupId> > <artifactId>deltaspike-cdictrl-owb</artifactId> > <scope>runtime</scope> > <exclusions> > <exclusion> > > <groupId>org.apache.deltaspike.test</groupId> > <artifactId>test-utils</artifactId> > </exclusion> > </exclusions> > </dependency> > <dependency> > <groupId>com.google.code.findbugs</groupId> > <artifactId>jsr305</artifactId> > <version>2.0.1</version> > <scope>compile</scope> > </dependency> > </dependencies> > > > Best regards, > Andrew Marinchuk > >
