| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <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.apache.myfaces.extensions.scripting</groupId> |
| <artifactId>extscript-root</artifactId> |
| <packaging>pom</packaging> |
| <name>Myfaces Extension Scripting Project</name> |
| <version>1.0.3</version> |
| <!-- test --> |
| <properties> |
| <myfaces12.version>1.2.9</myfaces12.version> |
| <myfaces2.version>2.1.6</myfaces2.version> |
| <extval.version>2.0.5</extval.version> |
| <groovy.version>1.7.2</groovy.version> |
| <maven-scala-plugin.scalaVersion>2.15.2</maven-scala-plugin.scalaVersion> |
| <scala-library.version>2.10.0-M2</scala-library.version> |
| </properties> |
| |
| |
| <description> |
| MyFaces Extension Scripting, scripting support and dynamic recompilation |
| for JSF |
| </description> |
| |
| <parent> |
| <groupId>org.apache.myfaces</groupId> |
| <artifactId>myfaces</artifactId> |
| <version>12</version> |
| </parent> |
| |
| <modules> |
| <module>extscript-core-root</module> |
| <module>extscript-bundles</module> |
| <module>extscript-examples</module> |
| </modules> |
| |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/extensions/scripting/tags/extscript-root-1.0.3</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/extensions/scripting/tags/extscript-root-1.0.3 |
| </developerConnection> |
| <url>http://svn.apache.org/viewvc/myfaces/extensions/scripting/tags/extscript-root-1.0.3</url> |
| </scm> |
| |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>${scala-library.version}</version> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-compiler</artifactId> |
| <version>${scala-library.version}</version> |
| </dependency> |
| |
| <!-- compile --> |
| <dependency> |
| <groupId>javax.el</groupId> |
| <artifactId>el-api</artifactId> |
| <version>1.0</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| <version>3.0.1</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>1.4</version> |
| </dependency> |
| <!-- test dependencies --> |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.7</version> |
| <scope>test</scope> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>org.apache.myfaces.test</groupId> |
| <artifactId>myfaces-test20</artifactId> |
| <version>1.0.0-beta</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>2.3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymockclassextension</artifactId> |
| <version>2.3</version> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <artifactId>maven-site-plugin</artifactId> |
| <inherited>true</inherited> |
| <version>2.2</version> |
| <configuration> |
| <outputEncoding>UTF-8</outputEncoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.scala-tools</groupId> |
| <artifactId>maven-scala-plugin</artifactId> |
| <version>${maven-scala-plugin.scalaVersion}</version> |
| </plugin> |
| </plugins> |
| |
| </pluginManagement> |
| |
| |
| <plugins> |
| <!-- scala tools plugin --> |
| <plugin> |
| <groupId>org.scala-tools</groupId> |
| <artifactId>maven-scala-plugin</artifactId> |
| <executions> |
| |
| <execution> |
| <id>compile</id> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| <phase>compile</phase> |
| </execution> |
| <execution> |
| <id>test-compile</id> |
| <goals> |
| <goal>testCompile</goal> |
| </goals> |
| <phase>test-compile</phase> |
| </execution> |
| <execution> |
| <phase>process-resources</phase> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>${scala-library.version}</version> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-compiler</artifactId> |
| <version>${scala-library.version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.3</version> |
| <configuration> |
| <source>1.6</source> |
| <target>1.6</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>2.5.1</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>clean</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| |
| <plugin> |
| <!-- |
| - Make a checkstyle violation a compile error. Note that if a compile error occurs, |
| - further information can be found in target/site/checkstyle.html (present even when |
| - just the compile goal and not the site goal has been run). Note also that child |
| - projects may redeclare this plugin and provide different configuration settings |
| - to use different checks (more or less strict than the default). |
| --> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>2.6</version> |
| <executions> |
| <execution> |
| <id>verify-style</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <configLocation>default/myfaces-checks-minimal.xml</configLocation> |
| <headerLocation>default/myfaces-header.txt</headerLocation> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| |
| <reporting> |
| <plugins> |
| |
| <plugin> |
| |
| <artifactId>maven-changelog-plugin</artifactId> |
| <version>2.1</version> |
| <reportSets> |
| <reportSet> |
| <id>dual-report</id> |
| <configuration> |
| <type>range</type> |
| <range>30</range> |
| </configuration> |
| <reports> |
| <report>changelog</report> |
| <report>file-activity</report> |
| <report>dev-activity</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.8</version> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>jxr-maven-plugin</artifactId> |
| |
| <!-- |
| <configuration> |
| <aggregate>true</aggregate> |
| </configuration> |
| --> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>taglist-maven-plugin</artifactId> |
| |
| <configuration> |
| <tags> |
| <tag>TODO</tag> |
| <tag>FIXME</tag> |
| <tag>XXX</tag> |
| <tag>@deprecated</tag> |
| </tags> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>surefire-report-maven-plugin</artifactId> |
| <version>2.12</version> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| |
| <configuration> |
| <targetJdk>1.5</targetJdk> |
| </configuration> |
| </plugin> |
| |
| <!-- cobertura code coverage plugin --> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| <version>2.5.1</version> |
| <configuration> |
| <formats> |
| <format>html</format> |
| <format>xml</format> |
| </formats> |
| </configuration> |
| </plugin> |
| |
| </plugins> |
| </reporting> |
| |
| |
| <profiles> |
| <!-- This profile is invoked by -DprepareRelease=true. This allows mvn release:prepare to |
| run successfully on the assembly projects. --> |
| <profile> |
| <id>prepare-release</id> |
| <activation> |
| <property> |
| <name>prepareRelease</name> |
| </property> |
| </activation> |
| <!-- |
| <modules> |
| <module>assembly</module> |
| </modules> |
| --> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-release-plugin</artifactId> |
| <configuration> |
| <arguments>-DprepareRelease</arguments> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| |
| </profiles> |
| |
| |
| </project> |