Thursday, September 22, 2011

svn commit: r1173987 - in /labs/yay/trunk: ./ doap.rdf doap_yay.rdf pom.xml

Author: tommaso
Date: Thu Sep 22 08:20:46 2011
New Revision: 1173987

URL: http://svn.apache.org/viewvc?rev=1173987&view=rev
Log:
renamed doap_yay.rdf to doap.rdf
checked in a first basic parent pom

Added:
labs/yay/trunk/doap.rdf (contents, props changed)
- copied, changed from r1173976, labs/yay/trunk/doap_yay.rdf
labs/yay/trunk/pom.xml
Removed:
labs/yay/trunk/doap_yay.rdf
Modified:
labs/yay/trunk/ (props changed)

Propchange: labs/yay/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Sep 22 08:20:46 2011
@@ -0,0 +1,3 @@
+*.ipr
+
+*.iml

Copied: labs/yay/trunk/doap.rdf (from r1173976, labs/yay/trunk/doap_yay.rdf)
URL: http://svn.apache.org/viewvc/labs/yay/trunk/doap.rdf?p2=labs/yay/trunk/doap.rdf&p1=labs/yay/trunk/doap_yay.rdf&r1=1173976&r2=1173987&rev=1173987&view=diff
==============================================================================
(empty)

Propchange: labs/yay/trunk/doap.rdf
------------------------------------------------------------------------------
svn:eol-style = native

Propchange: labs/yay/trunk/doap.rdf
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id

Added: labs/yay/trunk/pom.xml
URL: http://svn.apache.org/viewvc/labs/yay/trunk/pom.xml?rev=1173987&view=auto
==============================================================================
--- labs/yay/trunk/pom.xml (added)
+++ labs/yay/trunk/pom.xml Thu Sep 22 08:20:46 2011
@@ -0,0 +1,231 @@
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.labs</groupId>
+ <artifactId>yay-parent</artifactId>
+ <packaging>pom</packaging>
+ <version>1.0-SNAPSHOT</version>
+ <name>Yay</name>
+ <url>http://svn.apache.org/repos/asf/labs/yay</url>
+ <organization>
+ <name>Apache Software Foundation</name>
+ <url>http://www.apache.org/</url>
+ </organization>
+ <licenses>
+ <license>
+ <name>Apache License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
+ </license>
+ </licenses>
+ <scm>
+ <developerConnection>scm:svn:https://svn.apache.org/repos/asf/yay/trunk</developerConnection>
+ <connection>scm:svn:http://svn.apache.org/repos/asf/labs/</connection>
+ <url>http://svn.apache.org/viewvc/labs/yay/</url>
+ </scm>
+ <issueManagement>
+ <system>JIRA</system>
+ <url>https://issues.apache.org/jira/browse/LABS</url>
+ </issueManagement>
+ <mailingLists>
+ <mailingList>
+ <name>Apache labs general mailing list</name>
+ <post>labs@labs.apache.org</post>
+ <subscribe>labs-subscribe@labs.apache.org</subscribe>
+ <unsubscribe>labs-unsubscribe@labs.apache.org</unsubscribe>
+ <archive>http://mail-archives.apache.org/mod_mbox/labs-labs/</archive>
+ <otherArchives>
+ <otherArchive>http://markmail.org/list/org.apache.labs.labs/</otherArchive>
+ </otherArchives>
+ </mailingList>
+ <mailingList>
+ <name>Apache labs general SVN commit mailing list</name>
+ <subscribe>commits-subscribe@labs.apache.org</subscribe>
+ <unsubscribe>commits-unsubscribe@labs.apache.org</unsubscribe>
+ <archive>http://mail-archives.apache.org/mod_mbox/labs-commits/</archive>
+ <otherArchives>
+ <otherArchive>http://markmail.org/list/org.apache.labs.commits/</otherArchive>
+ </otherArchives>
+ </mailingList>
+ </mailingLists>
+ <developers>
+ <developer>
+ <id>tommaso</id>
+ <name>Tommaso Teofili</name>
+ <email>tommaso at apache dot org</email>
+ <organization>Sourcesense S.r.l.</organization>
+ <organizationUrl>http://www.sourcesense.com/</organizationUrl>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ </developers>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ </properties>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.7</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>1.1.1</version>
+ <configuration>
+ <xmlOutput>true</xmlOutput>
+ <xmlOutputDirectory>target/findbugs-reports</xmlOutputDirectory>
+ <threshold>High</threshold>
+ <effort>Max</effort>
+ <visitors>FindDeadLocalStores</visitors>
+ <omitVisitors>FindDeadLocalStores</omitVisitors>
+ <onlyAnalyze>org.apache.labs.yay.*</onlyAnalyze>
+ <debug>true</debug>
+ <relaxed>true</relaxed>
+ <xmlOutputDirectory>target/findbugs-reports</xmlOutputDirectory>
+ <findbugsXmlOutput>target/findbugs-reports</findbugsXmlOutput>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changes-plugin</artifactId>
+ <version>2.3</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>jira-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <compilerVersion>1.6</compilerVersion>
+ <source>1.6</source>
+ <target>1.6</target>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <configuration>
+ <outputEncoding>UTF-8</outputEncoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pdf-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>pdf</id>
+ <phase>site</phase>
+ <goals>
+ <goal>pdf</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <includeReports>false</includeReports>
+ <indentSize>1</indentSize>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ <resource>
+ <directory>..</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>doap.rdf</include>
+ </includes>
+ </resource>
+ </resources>
+ </build>
+ <modules>
+ </modules>
+</project>
\ No newline at end of file

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org

No comments:

Post a Comment