|
| 1 | +<!-- |
| 2 | + ~ JBoss, Home of Professional Open Source |
| 3 | + ~ Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors |
| 4 | + ~ as indicated by the @author tags. All rights reserved. |
| 5 | + ~ See the copyright.txt in the distribution for a |
| 6 | + ~ full listing of individual contributors. |
| 7 | + ~ |
| 8 | + ~ This copyrighted material is made available to anyone wishing to use, |
| 9 | + ~ modify, copy, or redistribute it subject to the terms and conditions |
| 10 | + ~ of the GNU Lesser General Public License, v. 2.1. |
| 11 | + ~ This program is distributed in the hope that it will be useful, but WITHOUT A |
| 12 | + ~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | + ~ PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | + ~ You should have received a copy of the GNU Lesser General Public License, |
| 15 | + ~ v.2.1 along with this distribution; if not, write to the Free Software |
| 16 | + ~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 17 | + ~ MA 02110-1301, USA. |
| 18 | + --> |
| 19 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <name>JBoss 7 - Management Console :: Flow :: Core</name> |
| 23 | + <artifactId>jboss-as-console-flow</artifactId> |
| 24 | + |
| 25 | + |
| 26 | + <parent> |
| 27 | + <groupId>org.jboss.as</groupId> |
| 28 | + <artifactId>jboss-as-console-flow-parent</artifactId> |
| 29 | + <version>1.6.0-SNAPSHOT</version> |
| 30 | + <relativePath>../pom.xml</relativePath> |
| 31 | + </parent> |
| 32 | + |
| 33 | + |
| 34 | + <dependencyManagement> |
| 35 | + <dependencies> |
| 36 | + <dependency> |
| 37 | + <groupId>org.jboss.as</groupId> |
| 38 | + <artifactId>jboss-as-console-bom</artifactId> |
| 39 | + <type>pom</type> |
| 40 | + <version>${project.version}</version> |
| 41 | + <scope>import</scope> |
| 42 | + </dependency> |
| 43 | + </dependencies> |
| 44 | + </dependencyManagement> |
| 45 | + <dependencies> |
| 46 | + <dependency> |
| 47 | + <groupId>com.google.gwt</groupId> |
| 48 | + <artifactId>gwt-user</artifactId> |
| 49 | + </dependency> |
| 50 | + </dependencies> |
| 51 | + |
| 52 | + |
| 53 | + <build> |
| 54 | + <plugins> |
| 55 | + <plugin> |
| 56 | + <groupId>org.codehaus.mojo</groupId> |
| 57 | + <artifactId>gwt-maven-plugin</artifactId> |
| 58 | + <executions> |
| 59 | + <execution> |
| 60 | + <goals> |
| 61 | + <goal>source-jar</goal> |
| 62 | + </goals> |
| 63 | + </execution> |
| 64 | + </executions> |
| 65 | + </plugin> |
| 66 | + </plugins> |
| 67 | + </build> |
| 68 | +</project> |
0 commit comments