jadex-bridge.
Jadex bridge is a base package for kernels and platforms, i.e. it is used by both and provides commonly used interfaces and classes for active components and their management..
Here is the list of declaration for jadex-bridge. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sourceforge.jadex</groupId> <artifactId>jadex-bridge</artifactId> <version>2.0-rc5</version> </dependency>
If you think this Maven repository POM file listing for jadex-bridge is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:LGPL License
URL: http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/view/Download/License.
The following table lists the most popular artifacts which are depending on jadex-bridge-2.0-rc5. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | jadex-kernel-bpmn 2.0-rc5 The Jadex BPMN kernel provides a workflow kernel for the standardized business process modeling notation. The kernel relies on annotated BPMN diagrams, which include detailed execution information. | 5 |
The following plugins are used in the jadex-bridge-2.0-rc5.jar
The following packages are defined in the jadex-bridge-2.0-rc5.jar
jadex.bridge
Here is the content of the POM file.
<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> <groupId>net.sourceforge.jadex</groupId> <artifactId>jadex-bridge</artifactId> <packaging>jar</packaging> <name>jadex-bridge</name> <version>2.0-rc5</version> <url>http://jadex.sourceforge.net</url> <description> Jadex bridge is a base package for kernels and platforms, i.e. it is used by both and provides commonly used interfaces and classes for active components and their management. </description> <licenses> <license> <name>LGPL License</name> <url>http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/view/Download/License </url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://jadex.svn.sourceforge.net/viewvc/jadex/</url> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> <!-- <parent> <groupId>net.sourceforge.jadex</groupId> <artifactId>jadex-settings</artifactId> <version>${jadexVersion}</version> <relativePath>../src/main/config/jadex-settings-pom.xml</relativePath> </parent> --> <properties> <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> </properties> <build> <resources> <resource> <directory>src/main/java</directory> <excludes> <exclude>**/*.java</exclude> <exclude>**/.svn/*</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>install</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <phase>install</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>install</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sourceforge.jadex</groupId> <artifactId>jadex-commons</artifactId> <version>2.0-rc5</version> </dependency> <dependency> <groupId>net.sourceforge.jadex</groupId> <artifactId>jadex-javaparser</artifactId> <version>2.0-rc5</version> </dependency> <!-- <dependency> <groupId>stax</groupId> <artifactId>stax</artifactId> <version>1.2.0</version> </dependency> --> </dependencies> </project>