Maven Repository - POM file for Parser commons-attributes-compiler 2.2 2.2

Summary

Jakarta Commons Attributes Ant Tasks and Utilities.

An Ant task that will precompile Java source..

Declaration

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

<dependency>
   <groupId>commons-attributes</groupId>
   <artifactId>commons-attributes-compiler</artifactId>
   <version>2.2</version>
</dependency>

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

License

Apache License.

Depends on

The commons-attributes-compiler-2.2 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
Data Structurecommons-attributes-api 2.2
A precompiler for java that enables the use of attributes as seen in C#.
40




Depended by

The following table lists the most popular artifacts which are depending on commons-attributes-compiler-2.2. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Springspring-aop 2.5.6
Spring Framework: AOP
31
Springspring-webmvc 2.5.1
Spring Framework: Web MVC
14
Springspring-webmvc 2.5.6.SEC01
Spring Framework: Web MVC
6
Springspring-webmvc 2.5.6.SEC02
Spring Framework: Web MVC
16
Springspring-aop 2.5
Spring Framework: AOP
81
Springspring-webmvc 2.5.4
Spring Framework: Web MVC
9
Springspring-aop 2.0.6
Spring Framework: AOP
8
Springspring 2.5.5
Spring Framework
11
Springspring-aop 2.5.4
Spring Framework: AOP
9
Springspring-webmvc 2.5.6
Spring Framework: Web MVC
7
Springspring 2.5.2
Spring Framework
8
Springspring 2.5.6.SEC03
Spring Framework
12
Springspring-webmvc 2.0.6
Spring Framework: WebMVC
7
Springspring 2.5.4
Spring Framework
8
Springspring 2.5.6
Spring Framework
51
Springspring 2.0
Spring Framework
11
Springspring-webmvc 2.5
Spring Framework: Web MVC
18
Springspring-aop 2.5.6.SEC01
Spring Framework: AOP
18
Springspring 2.5.6.SEC01
Spring Framework
5




Packages

The following packages are defined in the commons-attributes-compiler-2.2.jar

org.apache.commons.attributes.compiler
org.apache.commons.attributes.javadoc
org.apache.commons.attributes.validation

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
=
= Copyright 2003-2006 The Apache Software Foundation
= 
= Licensed 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>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-attributes</groupId>
  <artifactId>commons-attributes-compiler</artifactId>
  <version>2.2</version>

    <name>Jakarta Commons Attributes Ant Tasks and Utilities</name>
    <package>org.apache.commons.attributes.compiler</package>
    
    <description>
        An Ant task that will precompile Java source.
    </description>
  
  <dependencies>
    <dependency>
      <groupId>commons-attributes</groupId>
      <artifactId>commons-attributes-api</artifactId>
      <version>2.2</version>
    </dependency>
  </dependencies>

  <profiles>
    <profile>
      <!-- NOTE: This will not be activated on OS X, since classes.jar already has the tools in it. -->
      <id>default-tools.jar</id>
      <activation>
        <property>
          <name>java.vendor</name>
          <value>Sun Microsystems Inc.</value>
        </property>
       </activation>
      <dependencies>
        <dependency>
          <groupId>com.sun</groupId>
          <artifactId>tools</artifactId>
          <version>1.4.2</version>
          <scope>system</scope>
          <systemPath>${java.home}/../lib/tools.jar</systemPath>
         </dependency>
      </dependencies>
    </profile>
  </profiles>
</project>