|
From: <de...@us...> - 2014-05-26 19:42:08
|
Revision: 8716
http://sourceforge.net/p/fudaa/svn/8716
Author: deniger
Date: 2014-05-26 19:42:06 +0000 (Mon, 26 May 2014)
Log Message:
-----------
maj DTD + XSD pour nouveaux param?\195?\168tres apportDebit et attenuationConvection
Modified Paths:
--------------
trunk/pom/super-pom/pom.xml
Modified: trunk/pom/super-pom/pom.xml
===================================================================
--- trunk/pom/super-pom/pom.xml 2014-05-26 19:05:22 UTC (rev 8715)
+++ trunk/pom/super-pom/pom.xml 2014-05-26 19:42:06 UTC (rev 8716)
@@ -1,221 +1,230 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
- <groupId>org.fudaa.pom</groupId>
- <artifactId>super-pom</artifactId>
- <packaging>pom</packaging>
- <version>1.4</version>
- <name>Super Pom</name>
- <url>http://fudaa.fr</url>
- <properties>
- <!-- l'encoding pour les projets: a therme il faudrait changer cela en
- UTF-8 -->
- <!-- Certains projets applicatifs peuvent le faire -->
- <projetEncoding>ISO-8859-15</projetEncoding>
- <!-- la version du compiler -->
- <javaCompiler>1.6</javaCompiler>
- <ctuluGroupId>org.fudaa.framework.ctulu</ctuluGroupId>
- <dodicoGroupId>org.fudaa.framework.dodico</dodicoGroupId>
- <ebliGroupId>org.fudaa.framework.ebli</ebliGroupId>
- <fudaaGroupId>org.fudaa.framework.fudaa</fudaaGroupId>
- </properties>
- <mailingLists>
- <mailingList>
- <name>Fudaa Developer List</name>
- <subscribe>dev...@fu...</subscribe>
- <unsubscribe>dev...@fu...</unsubscribe>
- <post>de...@fu...</post>
- </mailingList>
- </mailingLists>
- <distributionManagement>
- <repository>
- <id>artifactory-fudaa</id>
- <name>fudaa-releases</name>
- <!-- on utilise webdav pour éviter les erreurs 401 -->
- <url>http://repository.fudaa.fr/artifactory/libs-releases-local</url>
- </repository>
- <snapshotRepository>
- <id>artifactory-fudaa-snapshot</id>
- <name>fudaa-snapshots</name>
- <!-- on utilise webdav pour éviter les erreurs 401 -->
- <url>http://repository.fudaa.fr/artifactory/libs-snapshots-local
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.fudaa.pom</groupId>
+ <artifactId>super-pom</artifactId>
+ <packaging>pom</packaging>
+ <version>1.5</version>
+ <name>Super Pom</name>
+ <url>http://fudaa.fr</url>
+ <properties>
+ <!-- l'encoding pour les projets: a therme il faudrait changer cela en
+ UTF-8 -->
+ <!-- Certains projets applicatifs peuvent le faire -->
+ <projetEncoding>ISO-8859-15</projetEncoding>
+ <!-- la version du compiler -->
+ <javaCompiler>1.6</javaCompiler>
+ <ctuluGroupId>org.fudaa.framework.ctulu</ctuluGroupId>
+ <dodicoGroupId>org.fudaa.framework.dodico</dodicoGroupId>
+ <ebliGroupId>org.fudaa.framework.ebli</ebliGroupId>
+ <fudaaGroupId>org.fudaa.framework.fudaa</fudaaGroupId>
+ </properties>
+ <mailingLists>
+ <mailingList>
+ <name>Fudaa Developer List</name>
+ <subscribe>dev...@fu...</subscribe>
+ <unsubscribe>dev...@fu...</unsubscribe>
+ <post>de...@fu...</post>
+ </mailingList>
+ </mailingLists>
+ <distributionManagement>
+ <repository>
+ <id>artifactory-fudaa</id>
+ <name>fudaa-releases</name>
+ <!-- on utilise webdav pour éviter les erreurs 401 -->
+ <url>http://repository.fudaa.fr/artifactory/libs-releases-local</url>
+ </repository>
+ <snapshotRepository>
+ <id>artifactory-fudaa-snapshot</id>
+ <name>fudaa-snapshots</name>
+ <!-- on utilise webdav pour éviter les erreurs 401 -->
+ <url>http://repository.fudaa.fr/artifactory/libs-snapshots-local
</url>
- </snapshotRepository>
+ </snapshotRepository>
- </distributionManagement>
+ </distributionManagement>
- <repositories>
- <repository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>central</id>
- <name>libs-releases</name>
- <url>http://repository.fudaa.fr/artifactory/repo</url>
- </repository>
- <repository>
- <snapshots />
- <id>snapshots</id>
- <name>libs-snapshots</name>
- <url>http://repository.fudaa.fr/artifactory/repo</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>central</id>
- <name>plugins-releases</name>
- <url>http://repository.fudaa.fr/artifactory/plugins-releases</url>
- </pluginRepository>
- <pluginRepository>
- <snapshots />
- <id>snapshots</id>
- <name>plugins-snapshots</name>
- <url>http://repository.fudaa.fr/artifactory/plugins-snapshots</url>
- </pluginRepository>
- </pluginRepositories>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase> process-resources</phase>
- <configuration>
- <tasks>
- <mkdir dir="${project.build.directory}" />
- <replace dir="${project.build.directory}" encoding="${projetEncoding}"
- includes="**/*.fr_txt" token=" " value="_" />
- <native2ascii src="${project.build.directory}"
- encoding="${projetEncoding}" dest="${project.build.directory}"
- includes="**/*.fr_txt" ext=".txt" />
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant-optional</artifactId>
- <version>1.5.3-1</version>
- </dependency>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.5+</version>
- <scope>system</scope>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency>
+ <repositories>
+ <repository>
+ <id>artifactory-fudaa</id>
+ <name>artifactory-fudaa</name>
+ <url>http://repository.fudaa.fr/artifactory/repo/</url>
+ <layout>default</layout>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>central</id>
+ <name>plugins-releases</name>
+ <url>http://repository.fudaa.fr/artifactory/plugins-releases</url>
+ </pluginRepository>
+ <pluginRepository>
+ <snapshots />
+ <id>snapshots</id>
+ <name>plugins-snapshots</name>
+ <url>http://repository.fudaa.fr/artifactory/plugins-snapshots</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase> process-resources</phase>
+ <configuration>
+ <tasks>
+ <mkdir dir="${project.build.directory}" />
+ <replace dir="${project.build.directory}" encoding="${projetEncoding}"
+ includes="**/*.fr_txt" token=" " value="_" />
+ <native2ascii src="${project.build.directory}"
+ encoding="${projetEncoding}" dest="${project.build.directory}"
+ includes="**/*.fr_txt" ext=".txt" />
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant-optional</artifactId>
+ <version>1.5.3-1</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.5+</version>
+ <scope>system</scope>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- </configuration>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <configuration>
+ </configuration>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.2.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>${javaCompiler}</source>
- <target>${javaCompiler}</target>
- <encoding>${projetEncoding}</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.5</version>
- <configuration>
- <encoding>${projetEncoding}</encoding>
- </configuration>
- </plugin>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.2.1</version>
+ <configuration>
+ <providerImplementations>
+ <svn>javasvn</svn>
+ </providerImplementations>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
+ <artifactId>maven-scm-provider-svnjava</artifactId>
+ <version>2.0.5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.tmatesoft.svnkit</groupId>
+ <artifactId>svnkit</artifactId>
+ <version>1.7.8</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>${javaCompiler}</source>
+ <target>${javaCompiler}</target>
+ <encoding>${projetEncoding}</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <encoding>${projetEncoding}</encoding>
+ </configuration>
+ </plugin>
- <!-- pour que les sources soient livrées avec les jars -->
- <!-- http://maven.apache.org/plugins/maven-source-plugin/usage.html -->
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.1.2</version>
- <configuration>
- </configuration>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-changelog-plugin</artifactId>
- <version>2.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.3.2</version>
- <executions>
- <execution>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
+ <!-- pour que les sources soient livrées avec les jars -->
+ <!-- http://maven.apache.org/plugins/maven-source-plugin/usage.html -->
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.1.2</version>
+ <configuration>
+ </configuration>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-changelog-plugin</artifactId>
+ <version>2.1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.3.2</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
- <extensions>
-<!-- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav-jackrabbit</artifactId>
- <version>2.6</version>
- </extension>-->
-<!-- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ftp</artifactId>
- <version>2.0</version>
- </extension>-->
- </extensions>
- </build>
+ <extensions>
+ <!-- <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav-jackrabbit</artifactId>
+ <version>2.6</version>
+ </extension>-->
+ <!-- <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ftp</artifactId>
+ <version>2.0</version>
+ </extension>-->
+ </extensions>
+ </build>
</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|