You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2013/10/28 09:08:49 UTC

svn commit: r1536282 - /myfaces/tobago/branches/tobago-1.5.x/tobago-example/pom.xml

Author: lofwyr
Date: Mon Oct 28 08:08:48 2013
New Revision: 1536282

URL: http://svn.apache.org/r1536282
Log:
liberty profile (websphere)

Modified:
    myfaces/tobago/branches/tobago-1.5.x/tobago-example/pom.xml

Modified: myfaces/tobago/branches/tobago-1.5.x/tobago-example/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.5.x/tobago-example/pom.xml?rev=1536282&r1=1536281&r2=1536282&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.5.x/tobago-example/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.5.x/tobago-example/pom.xml Mon Oct 28 08:08:48 2013
@@ -419,5 +419,42 @@
       </dependencies>
     </profile>
 
+    <profile>
+      <id>liberty</id>
+      <build>
+        <plugins>
+          <plugin>
+            <!-- The usage is documented in the FAQ -->
+            <groupId>com.ibm.websphere.wlp.maven.plugins</groupId>
+            <artifactId>liberty-maven-plugin</artifactId>
+            <version>1.1</version>
+            <configuration>
+              <serverHome>${wlp.directory}/wlp</serverHome>
+              <appArchive>${project.build.directory}/${project.build.finalName}.war</appArchive>
+              <serverName>tobago</serverName>
+              <!-- default debugging port is 7777 -->
+              <!--<debug>true</debug>-->
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+      <pluginRepositories>
+        <pluginRepository>
+          <!-- For IBM Websphere Liberty Profile (WLP) -->
+          <id>Liberty</id>
+          <name>Liberty Repository</name>
+          <url>http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/maven/repository/</url>
+          <layout>default</layout>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+          <releases>
+            <enabled>true</enabled>
+          </releases>
+        </pluginRepository>
+      </pluginRepositories>
+
+    </profile>
+
   </profiles>
 </project>