Maven Repository - POM file for Inversion of Control uimafit-core 2.0.0 2.0.0

Summary

uimaFIT - Core.

Factories, Injection, and Testing library for UIMA.

Declaration

Here is the list of declaration for uimafit-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.uima</groupId>
   <artifactId>uimafit-core</artifactId>
   <version>2.0.0</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The uimafit-core-2.0.0 has 1 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
Loglog4j 1.2.15
Apache Log4j 1.2
310




Plugin

The following plugins are used in the uimafit-core-2.0.0.jar

  1. build-helper-maven-plugin
  2. jcasgen-maven-plugin

Packages

The following packages are defined in the uimafit-core-2.0.0.jar

org.apache.uima.fit.component
org.apache.uima.fit.component.initialize
org.apache.uima.fit.descriptor
org.apache.uima.fit.factory
org.apache.uima.fit.factory.initializable
org.apache.uima.fit.factory.locator
org.apache.uima.fit.internal
org.apache.uima.fit.internal.propertyeditors
org.apache.uima.fit.pipeline
org.apache.uima.fit.testing.factory
org.apache.uima.fit.testing.util
org.apache.uima.fit.type
org.apache.uima.fit.util




POM File Source

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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <artifactId>uimafit-core</artifactId>
  <packaging>jar</packaging>
  <name>uimaFIT - Core</name>
  <description>Factories, Injection, and Testing library for UIMA</description>
  <url>${uimaWebsiteUrl}</url>
  <parent>
    <groupId>org.apache.uima</groupId>
    <artifactId>uimafit-parent</artifactId>
    <version>2.0.0</version>
    <relativePath>../uimafit-parent</relativePath>
  </parent>
  <dependencies>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.uima</groupId>
      <artifactId>uimaj-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.15</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>jmxtools</artifactId>
          <groupId>com.sun.jdmk</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jmxri</artifactId>
          <groupId>com.sun.jmx</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jms</artifactId>
          <groupId>javax.jms</groupId>
        </exclusion>
        <exclusion>
          <artifactId>mail</artifactId>
          <groupId>javax.mail</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.uima</groupId>
        <artifactId>jcasgen-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
            <configuration>
              <typeSystemIncludes>
                <typeSystemInclude>src/test/resources/org/apache/uima/fit/type/**/*.xml</typeSystemInclude>
              </typeSystemIncludes>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <!--
          This plug-in adds the jcasgen generated source code folder as a project
          source folder
        -->
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>add-test-source</id>
            <phase>process-test-resources</phase>
            <goals>
              <goal>add-test-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>${project.build.directory}/generated-sources/jcasgen</source>
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.rat</groupId>
          <artifactId>apache-rat-plugin</artifactId>
          <executions>
            <execution>
              <id>default-cli</id>
              <configuration>
                <excludes>
                  <exclude>release.properties</exclude>
                  <exclude>README*</exclude>
                  <exclude>RELEASE_NOTES*</exclude>
                  <exclude>issuesFixed/**</exclude>
                  <!-- These test files are unreasonable to bear a license header -->
                  <exclude>src/test/resources/data/docs/unix-newlines.txt</exclude>
                  <exclude>src/test/resources/data/docs/windows-newlines.txt</exclude>
                  <exclude>src/test/resources/data/docs/bad.xcas</exclude>
                  <exclude>src/test/resources/data/docs/test.xcas</exclude>
                  <exclude>src/test/resources/data/docs/test.xmi</exclude>
                  <exclude>src/test/resources/data/reference/JCasBuilderTest.dump</exclude>
                  <exclude>src/test/resources/data/reference/test.xmi.dump</exclude>
                  <!-- These configuration files cannot bear a license header -->
                  <exclude>src/test/resources/META-INF/org.apache.uima.fit/fsindexes.txt</exclude>
                  <exclude>src/test/resources/META-INF/org.apache.uima.fit/typepriorities.txt</exclude>
                  <exclude>src/test/resources/META-INF/org.apache.uima.fit/types.txt</exclude>
                </excludes>
              </configuration>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>