Parcourir la source

add classifier profiles to samples

tags/release-1.3.2
Manolo Carrasco il y a 13 ans
Parent
révision
1005e171ca
2 fichiers modifiés avec 23 ajouts et 8 suppressions
  1. 18
    1
      pom.xml
  2. 5
    7
      samples/pom.xml

+ 18
- 1
pom.xml Voir le fichier

@@ -161,15 +161,32 @@

<properties>
<gwtversion>2.2.0</gwtversion>
<gwtmaven>2.2.0</gwtmaven>
<gqueryclassifier></gqueryclassifier>
<gwt.loglevel>INFO</gwt.loglevel>
<gwt.outputstyle>OBF</gwt.outputstyle>
<gwt.modulesuffix />
<gwtmaven>2.2.0</gwtmaven>
<repoId>sonatype-nexus-staging</repoId>
<repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
</properties>

<profiles>
<profile>
<id>2.1.0</id>
<properties>
<gwtversion>2.1.0</gwtversion>
<gwtmaven>2.1.0</gwtmaven>
<gqueryclassifier>2.1.0</gqueryclassifier>
</properties>
</profile>
<profile>
<id>2.0.1</id>
<properties>
<gwtversion>2.0.1</gwtversion>
<gwtmaven>1.1</gwtmaven>
<gqueryclassifier>2.0.1</gqueryclassifier>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>

+ 5
- 7
samples/pom.xml Voir le fichier

@@ -1,6 +1,4 @@
<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">
<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>com.googlecode.gwtquery</groupId>
@@ -16,20 +14,20 @@
<groupId>${groupId}</groupId>
<artifactId>gwtquery</artifactId>
<version>${version}</version>
<!-- <classifier>2.0.1</classifier> -->
<classifier>${gqueryclassifier></classifier>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>2.0.1</version>
<version>${gwtversion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>2.0.1</version>
<version>${gwtversion}</version>
<scope>provided</scope>
</dependency>
</dependencies>
@@ -38,7 +36,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.1</version>
<version>${gwtmaven}</version>
<configuration>
<logLevel>${gwt.loglevel}</logLevel>
<style>${gwt.outputstyle}</style>

Chargement…
Annuler
Enregistrer