| 1 |
<?xml version="1.0"?> |
| 2 |
<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"> |
| 3 |
<modelVersion>4.0.0</modelVersion> |
| 4 |
<groupId>jp.sf.pal</groupId> |
| 5 |
<artifactId>faces-utils</artifactId> |
| 6 |
<packaging>jar</packaging> |
| 7 |
<version>0.3.1</version> |
| 8 |
<name>faces-utils</name> |
| 9 |
<description/> |
| 10 |
<url>http://pal.sourceforge.jp/</url> |
| 11 |
<inceptionYear>2005</inceptionYear> |
| 12 |
<developers> |
| 13 |
<developer> |
| 14 |
<id>shinsuke</id> |
| 15 |
<name>Shinsuke Sugaya</name> |
| 16 |
<email>shinsuke_at_yahoo.co.jp</email> |
| 17 |
<url>http://d.hatena.ne.jp/shinsuke_sugaya/</url> |
| 18 |
<organization/> |
| 19 |
<organizationUrl/> |
| 20 |
<timezone>+9</timezone> |
| 21 |
</developer> |
| 22 |
</developers> |
| 23 |
<licenses> |
| 24 |
<license> |
| 25 |
<name>The Apache Software License, Version 2.0</name> |
| 26 |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 27 |
<distribution>repo</distribution> |
| 28 |
</license> |
| 29 |
</licenses> |
| 30 |
<scm> |
| 31 |
<connection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:libraries/faces-utils</connection> |
| 32 |
<developerConnection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:libraries/faces-utils</developerConnection> |
| 33 |
<url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/libraries/faces-utils</url> |
| 34 |
</scm> |
| 35 |
<organization> |
| 36 |
<name>Portal Application Laboratory</name> |
| 37 |
<url>http://pal.sourceforge.jp/</url> |
| 38 |
</organization> |
| 39 |
<build> |
| 40 |
<defaultGoal>validate</defaultGoal> |
| 41 |
<pluginManagement> |
| 42 |
<plugins> |
| 43 |
<plugin> |
| 44 |
<artifactId>maven-compiler-plugin</artifactId> |
| 45 |
<configuration> |
| 46 |
<source>1.4</source> |
| 47 |
<target>1.4</target> |
| 48 |
<encoding>UTF-8</encoding> |
| 49 |
</configuration> |
| 50 |
</plugin> |
| 51 |
<plugin> |
| 52 |
<artifactId>maven-deploy-plugin</artifactId> |
| 53 |
<configuration> |
| 54 |
<updateReleaseInfo>true</updateReleaseInfo> |
| 55 |
</configuration> |
| 56 |
</plugin> |
| 57 |
<plugin> |
| 58 |
<groupId>org.codehaus.mojo</groupId> |
| 59 |
<artifactId>cobertura-maven-plugin</artifactId> |
| 60 |
<version>2.0-SNAPSHOT</version> |
| 61 |
<executions> |
| 62 |
<execution> |
| 63 |
<goals> |
| 64 |
<goal>clean</goal> |
| 65 |
</goals> |
| 66 |
</execution> |
| 67 |
</executions> |
| 68 |
</plugin> |
| 69 |
</plugins> |
| 70 |
</pluginManagement> |
| 71 |
<plugins> |
| 72 |
<plugin> |
| 73 |
<artifactId>maven-source-plugin</artifactId> |
| 74 |
<executions> |
| 75 |
<execution> |
| 76 |
<id>source-jar</id> |
| 77 |
<phase>package</phase> |
| 78 |
<goals> |
| 79 |
<goal>jar</goal> |
| 80 |
</goals> |
| 81 |
</execution> |
| 82 |
</executions> |
| 83 |
</plugin> |
| 84 |
</plugins> |
| 85 |
</build> |
| 86 |
<repositories> |
| 87 |
<repository> |
| 88 |
<id>maven.marevol.com</id> |
| 89 |
<name>Maven2 Repository on marevol.com</name> |
| 90 |
<url>http://www.marevol.com/maven2</url> |
| 91 |
</repository> |
| 92 |
</repositories> |
| 93 |
<pluginRepositories> |
| 94 |
<pluginRepository> |
| 95 |
<id>people.apache.org m2-snapshot</id> |
| 96 |
<url>http://people.apache.org/repo/m2-snapshot-repository</url> |
| 97 |
<snapshots> |
| 98 |
<enabled>true</enabled> |
| 99 |
</snapshots> |
| 100 |
<releases> |
| 101 |
<enabled>false</enabled> |
| 102 |
</releases> |
| 103 |
</pluginRepository> |
| 104 |
<pluginRepository> |
| 105 |
<id>snapshots.repository.codehaus.org</id> |
| 106 |
<url>http://snapshots.repository.codehaus.org</url> |
| 107 |
<snapshots> |
| 108 |
<enabled>true</enabled> |
| 109 |
</snapshots> |
| 110 |
<releases> |
| 111 |
<enabled>false</enabled> |
| 112 |
</releases> |
| 113 |
</pluginRepository> |
| 114 |
</pluginRepositories> |
| 115 |
<dependencies> |
| 116 |
<dependency> |
| 117 |
<groupId>junit</groupId> |
| 118 |
<artifactId>junit</artifactId> |
| 119 |
<version>3.8.1</version> |
| 120 |
<scope>test</scope> |
| 121 |
</dependency> |
| 122 |
<dependency> |
| 123 |
<groupId>servletapi</groupId> |
| 124 |
<artifactId>servletapi</artifactId> |
| 125 |
<version>2.3</version> |
| 126 |
<scope>provided</scope> |
| 127 |
</dependency> |
| 128 |
<dependency> |
| 129 |
<groupId>portlet-api</groupId> |
| 130 |
<artifactId>portlet-api</artifactId> |
| 131 |
<version>1.0</version> |
| 132 |
<scope>provided</scope> |
| 133 |
</dependency> |
| 134 |
<dependency> |
| 135 |
<groupId>org.seasar.teeda</groupId> |
| 136 |
<artifactId>teeda-core</artifactId> |
| 137 |
<version>1.0.3</version> |
| 138 |
<scope>provided</scope> |
| 139 |
</dependency> |
| 140 |
</dependencies> |
| 141 |
</project> |