You are viewing a plain text version of this content. The canonical link for it is here.
Posted to adffaces-commits@incubator.apache.org by ma...@apache.org on 2007/03/07 14:18:41 UTC

svn commit: r515578 - in /incubator/adffaces/branches/matzew-core-1.0.0-incubation: examples/pom.xml pom.xml

Author: matzew
Date: Wed Mar  7 06:18:40 2007
New Revision: 515578

URL: http://svn.apache.org/viewvc?view=rev&rev=515578
Log:
added *examples* module and examples pom

Added:
    incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml   (with props)
Modified:
    incubator/adffaces/branches/matzew-core-1.0.0-incubation/pom.xml

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml?view=auto&rev=515578
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml Wed Mar  7 06:18:40 2007
@@ -0,0 +1,133 @@
+<?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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.myfaces.trinidad</groupId>
+    <artifactId>trinidad</artifactId>
+    <version>1.0.0-incubating-SNAPSHOT</version>
+  </parent>
+  <packaging>pom</packaging>
+  <name>Apache Trinidad Examples</name>
+  <artifactId>trinidad-example</artifactId>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples
+    </developerConnection>
+  </scm>
+
+
+  <modules>
+    <module>blank</module>
+  </modules>
+
+
+
+  <profiles>
+    <profile>
+      <id>generate-assembly</id>
+      <modules>
+        <module>blank</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>staging</id>
+      <build>
+      
+        <plugins>
+          <!-- We want to deploy the artifact to a staging location for perusal
+           mvn -Pstaging -Ddeploy.altRepository=scpexe://people.apache.org/www/people.apache.org/builds/myfaces/m2-staging-repository
+          -->
+          <plugin>
+            <inherited>true</inherited>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <version>2.3</version>
+            <configuration>
+              <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
+              <updateReleaseInfo>true</updateReleaseInfo>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>release</id>
+      <!--
+      NOTE: To use you need to enable this profile and pass in the passphrase:
+            mvn -Prelease -Dpassphrase=thephrase
+       -->
+      <build>
+        <plugins>
+          <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>
+          <plugin>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.0.2</version>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.2</version>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-scm-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <id>getting-scm.revision</id>
+                <goals><goal>update</goal></goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+</project>
\ No newline at end of file

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: incubator/adffaces/branches/matzew-core-1.0.0-incubation/pom.xml
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/pom.xml?view=diff&rev=515578&r1=515577&r2=515578
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/pom.xml (original)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/pom.xml Wed Mar  7 06:18:40 2007
@@ -296,6 +296,7 @@
     <module>trinidad-build</module>
     <module>trinidad-impl</module>
     <module>trinidad-demo</module>
+    <module>examples</module>
   </modules>
 
   <repositories>