|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>com.openwide</groupId> |
| 6 | + <artifactId>pureAirFlowers-Release</artifactId> |
| 7 | + <packaging>pom</packaging> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + |
| 10 | + <name>pureAirFlowers-Release</name> |
| 11 | + <url>http://maven.apache.org</url> |
| 12 | + |
| 13 | + <!--<parent> |
| 14 | + <groupId>org.ow2.frascati.examples</groupId> |
| 15 | + <artifactId>parent</artifactId> |
| 16 | + <version>1.4-SNAPSHOT</version> |
| 17 | + </parent>--> |
| 18 | + |
| 19 | + <parent> |
| 20 | + <groupId>org.ow2.frascati</groupId> |
| 21 | + <artifactId>parent</artifactId> |
| 22 | + <version>1.4-SNAPSHOT</version> |
| 23 | + </parent> |
| 24 | + |
| 25 | + <!-- Properties --> |
| 26 | + <properties> |
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + <!-- Dependencies versions --> |
| 29 | + <osoa.version>1.0</osoa.version> |
| 30 | + <aopalliance.version>1.0</aopalliance.version> |
| 31 | + <jsr311.version>1.1.1</jsr311.version> |
| 32 | + <frascati.version>1.4-SNAPSHOT</frascati.version> |
| 33 | + <frascati.tinfi.runtime.version>1.4.4</frascati.tinfi.runtime.version> |
| 34 | + <frascati.tinfi.oo.version>1.4.4</frascati.tinfi.oo.version> |
| 35 | + <!-- Composite file to run --> |
| 36 | + <!--<composite.file>RestSoapProxy</composite.file>--> |
| 37 | + <!--<composite.file>RestSoapProxy_withIntents</composite.file>--> |
| 38 | + <!-- Not used --> |
| 39 | + <!--<service.name>ProxyService</service.name>--> |
| 40 | + <!--<method.name>redirectRequests</method.name>--> |
| 41 | + </properties> |
| 42 | + |
| 43 | + <dependencyManagement> |
| 44 | + <dependencies> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.ow2.frascati</groupId> |
| 48 | + <artifactId>frascati-runtime-factory</artifactId> |
| 49 | + <version>${frascati.version}</version> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <dependency> |
| 53 | + <groupId>org.ow2.frascati</groupId> |
| 54 | + <artifactId>frascati-binding-ws</artifactId> |
| 55 | + <version>${frascati.version}</version> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <!-- dependency> |
| 59 | + <groupId>org.ow2.frascati</groupId> |
| 60 | + <artifactId>frascati-explorer-api</artifactId> |
| 61 | + <version>${frascati.version}</version> |
| 62 | + </dependency --> |
| 63 | + |
| 64 | + <!-- Test --> |
| 65 | + <dependency> |
| 66 | + <groupId>junit</groupId> |
| 67 | + <artifactId>junit</artifactId> |
| 68 | + <version>4.6</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + </dependencies> |
| 72 | + </dependencyManagement> |
| 73 | + |
| 74 | + <!-- Modules --> |
| 75 | + <modules> |
| 76 | + <module>../pureAirFlowers-autoRearmFuseIntent</module> |
| 77 | + <module>../pureAirFlowers-logIntent</module> |
| 78 | + <module>../pureAirFlowers-ServiceUiScaffolderProxy</module> |
| 79 | + <module>../pureAirFlowers-buildAll</module> |
| 80 | + </modules> |
| 81 | + |
| 82 | + <!-- Plugin management --> |
| 83 | + <!--<build> |
| 84 | + <pluginManagement> |
| 85 | + <plugins> |
| 86 | + Compile with Java 1.6 |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-compiler-plugin</artifactId> |
| 90 | + <configuration> |
| 91 | + <source>1.6</source> |
| 92 | + <target>1.6</target> |
| 93 | + </configuration> |
| 94 | + </plugin> |
| 95 | +
|
| 96 | + Used to create a binary distribution. |
| 97 | + <plugin> |
| 98 | + <artifactId>maven-assembly-plugin</artifactId> |
| 99 | + <groupId>org.apache.maven.plugins</groupId> |
| 100 | + <version>2.2-beta-3</version> |
| 101 | + <configuration> |
| 102 | + This is where we use our shared assembly descriptor |
| 103 | + <descriptorRefs> |
| 104 | + <descriptorRef>bin</descriptorRef> |
| 105 | + </descriptorRefs> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + |
| 109 | + </plugins> |
| 110 | + </pluginManagement> |
| 111 | + </build>--> |
| 112 | + |
| 113 | + |
| 114 | + |
| 115 | + <!-- --> |
| 116 | + <build> |
| 117 | + <plugins> |
| 118 | + <plugin> |
| 119 | + <groupId>org.apache.maven.plugins</groupId> |
| 120 | + <artifactId>maven-compiler-plugin</artifactId> |
| 121 | + <configuration> |
| 122 | + <source>1.6</source> |
| 123 | + <target>1.6</target> |
| 124 | + </configuration> |
| 125 | + </plugin> |
| 126 | + <!--<plugin> |
| 127 | + <artifactId>maven-assembly-plugin</artifactId> |
| 128 | + <executions> |
| 129 | + <execution> |
| 130 | + <id>create-executable-jar</id> |
| 131 | + <phase>package</phase> |
| 132 | + <goals> |
| 133 | + <goal>single</goal> |
| 134 | + </goals> |
| 135 | + <configuration> |
| 136 | + <overWriteReleases>true</overWriteReleases> |
| 137 | + <overWriteSnapshots>true</overWriteSnapshots> |
| 138 | + <descriptors> |
| 139 | + <descriptor>src/main/assembly/assembly.xml</descriptor> |
| 140 | + </descriptors> |
| 141 | + <archive> |
| 142 | + <manifest> |
| 143 | + <mainClass>pureairflowers.clients.PureAirFlowersServer</mainClass> |
| 144 | + </manifest> |
| 145 | + </archive> |
| 146 | + </configuration> |
| 147 | + </execution> |
| 148 | + </executions> |
| 149 | + </plugin>--> |
| 150 | + </plugins> |
| 151 | + </build> |
| 152 | + |
| 153 | +</project> |
0 commit comments