Download properties-maven-plugin-1.0.jar file

Introduction

You can download properties-maven-plugin-1.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

properties-maven-plugin-1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.codehaus.mojo/properties-maven-plugin/pom.properties
META-INF/maven/org.codehaus.mojo/properties-maven-plugin/pom.xml
META-INF/maven/plugin.xml
org.codehaus.mojo.properties.AbstractWritePropertiesMojo.class
org.codehaus.mojo.properties.HelpMojo.class
org.codehaus.mojo.properties.ReadPropertiesMojo.class
org.codehaus.mojo.properties.SetSystemPropertiesMojo.class
org.codehaus.mojo.properties.WriteActiveProfileProperties.class
org.codehaus.mojo.properties.WriteProjectProperties.class

Pom

properties-maven-plugin-1.0.pom file content.

<?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">
  
  <parent>
    <artifactId>mojo-parent</artifactId>
    <groupId>org.codehaus.mojo</groupId>
    <version>21</version>
  </parent>
  
  <modelVersion>4.0.0</modelVersion>
  
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>properties-maven-plugin</artifactId>
  <version>1.0-alpha-2</version>
  
  <name>Properties Maven Plugin</name>
  <description> 
    The Properties Maven Plugin is here to make life a little easier when dealing
    with properties. It provides goals to read and write properties from files.
  </description>
  
  <inceptionYear>2009</inceptionYear>
  
  <packaging>maven-plugin</packaging>
  
  <url>http://mojo.codehaus.org/properties-maven-plugin/</url>
  
  <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>
  
  <prerequisites>
    <maven>2.0.6</maven>
  </prerequisites>
  
  <scm>
    <connection>scm:svn:http://svn.codehaus.org/mojo/tags/properties-maven-plugin-1.0-alpha-2</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/properties-maven-plugin-1.0-alpha-2</developerConnection>
    <url>http://fisheye.codehaus.org/browse/mojo/tags/properties-maven-plugin-1.0-alpha-2</url>
  </scm>

  <developers>
    <developer>
      <id>arsenalist</id>
      <name>Zarar Siddiqi</name>
      <email>zarars@gmail.com</email>
      <url>http://arsenalist.com/tech</url>
    </developer>
    <developer>
      <id>krystian</id>
      <name>Krystian Nowak</name>
      <email>Krystian.Nowak@gmail.com</email>
    </developer>
  </developers>
  
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-model</artifactId>
      <version>${maven.api.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>${maven.api.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-project</artifactId>
      <version>${maven.api.version}</version>
    </dependency>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
      <version>1.5.6</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  
  <properties>
    <maven.scm.version>1.1.1-SNAPSHOT</maven.scm.version>
    <maven.api.version>2.0.6</maven.api.version>
  </properties>
  
</project>

POM Entry

<dependency>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>properties-maven-plugin</artifactId>
   <version>1.0</version>
</dependency>

Download

If you think the following properties-maven-plugin-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download properties-maven-plugin-1.0.jar file




PreviousNext

Related