OpenWebBeans Core.
Apache OpenWebBeans Implementation core module.
Here is the list of declaration for openwebbeans-impl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.openwebbeans</groupId> <artifactId>openwebbeans-impl</artifactId> <version>1.2.1</version> </dependency>
If you think this Maven repository POM file listing for openwebbeans-impl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The following plugins are used in the openwebbeans-impl-1.2.1.jar
The following packages are defined in the openwebbeans-impl-1.2.1.jar
org.apache.webbeans.annotation org.apache.webbeans.boot org.apache.webbeans.component org.apache.webbeans.component.creation org.apache.webbeans.component.spi org.apache.webbeans.component.third org.apache.webbeans.config org.apache.webbeans.container org.apache.webbeans.context org.apache.webbeans.context.creational org.apache.webbeans.conversation org.apache.webbeans.corespi org.apache.webbeans.corespi.scanner org.apache.webbeans.corespi.scanner.xbean org.apache.webbeans.corespi.se org.apache.webbeans.corespi.security org.apache.webbeans.decorator org.apache.webbeans.deployment org.apache.webbeans.deployment.stereotype org.apache.webbeans.el org.apache.webbeans.event org.apache.webbeans.exception org.apache.webbeans.exception.definition org.apache.webbeans.exception.helper org.apache.webbeans.exception.inject org.apache.webbeans.inject org.apache.webbeans.inject.impl org.apache.webbeans.inject.instance org.apache.webbeans.intercept org.apache.webbeans.intercept.annotation org.apache.webbeans.jms org.apache.webbeans.lifecycle org.apache.webbeans.lifecycle.test org.apache.webbeans.logger org.apache.webbeans.plugins org.apache.webbeans.portable org.apache.webbeans.portable.events org.apache.webbeans.portable.events.discovery org.apache.webbeans.portable.events.generics org.apache.webbeans.proxy org.apache.webbeans.service org.apache.webbeans.util org.apache.webbeans.xml
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.openwebbeans</groupId> <artifactId>openwebbeans</artifactId> <version>1.2.1</version> </parent> <artifactId>openwebbeans-impl</artifactId> <name>OpenWebBeans Core</name> <description> Apache OpenWebBeans Implementation core module </description> <dependencies> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-el_2.2_spec</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.xbean</groupId> <artifactId>xbean-finder-shaded</artifactId> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jcdi_1.0_spec</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-atinject_1.0_spec</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.openwebbeans</groupId> <artifactId>openwebbeans-spi</artifactId> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-interceptor_1.1_spec</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <!-- additionally create a jar with all the test classes for use in the TCK module --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <!-- Apache plugins in alphabetical order --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> <reportSets> <reportSet> <reports> <report>cim</report> <report>index</report> <report>issue-tracking</report> <report>mailing-list</report> <report>project-team</report> <report>scm</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>run-its</id> <build> <plugins> <!-- invoke the integration tests under src/it --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <debug>true</debug> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <goals> <goal>install</goal> </goals> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>