Maven Repository - POM file for Development jadex-kernel-base 2.0 2.0

Summary

jadex-kernel-base.

The Jadex base kernel provides basic support for all kinds of active components..

Declaration

Here is the list of declaration for jadex-kernel-base. 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-kernel-base</artifactId>
   <version>2.0</version>
</dependency>

If you think this Maven repository POM file listing for jadex-kernel-base is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:LGPL License
URL: http://jadex-agents.informatik.uni-hamburg.de/xwiki/bin/view/Download/License.





Depends on

The jadex-kernel-base-2.0 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Data Structurejadex-commons 2.0
Jadex commons is a base package containing frequently used functionality missing in standard Java utility classes.
12
Developmentjadex-bridge 2.0
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.
9

Plugin

The following plugins are used in the jadex-kernel-base-2.0.jar

  1. maven-compiler-plugin
  2. maven-gpg-plugin
  3. maven-javadoc-plugin
  4. maven-source-plugin

Packages

The following packages are defined in the jadex-kernel-base-2.0.jar

jadex.kernelbase




POM File Source

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-kernel-base</artifactId>
  <packaging>jar</packaging>
  <version>2.0</version>
  <name>jadex-kernel-base</name>
  <url>http://jadex.sourceforge.net</url>

  <description>
    The Jadex base kernel provides basic
    support for all kinds of active components. 
  </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>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Nexus Snapshot Repository</name>
      <url>http://oss.sonatype.org/content/repositories/snapshots/</url>
      <uniqueVersion>false</uniqueVersion>
    </snapshotRepository>
  </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>
      <!-- Java 1.6 javax.xml.stream.* -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
            <version>2.1.2</version>
        <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>
            <version>2.8</version>
        <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>
  
  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
      <layout>default</layout>
    </repository>
  </repositories>

  <dependencies>
    <!-- 
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
     -->

    <dependency>
      <groupId>net.sourceforge.jadex</groupId>
      <artifactId>jadex-commons</artifactId>
      <version>2.0</version>
    </dependency>

    <dependency>
      <groupId>net.sourceforge.jadex</groupId>
      <artifactId>jadex-javaparser</artifactId>
      <version>2.0</version>
    </dependency>

    <dependency>
      <groupId>net.sourceforge.jadex</groupId>
      <artifactId>jadex-bridge</artifactId>
      <version>2.0</version>
    </dependency>

  </dependencies>
</project>