| <?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.6-SNAPSHOT</version> |
| <url>http://myfaces.apache.org/extensions/scripting</url> |
| |
| <properties> |
| <myfaces12.version>1.2.9</myfaces12.version> |
| <myfaces2.version>2.1.7</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> |
| <deltaspike.version>0.2-incubating-SNAPSHOT</deltaspike.version> |
| <openwebbeans.version>1.1.2</openwebbeans.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> |
| <module>extscript-doccompiler</module> |
| </modules> |
| |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk |
| </developerConnection> |
| <url>http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk</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.10</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> |
| <extensions> |
| <extension> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-ssh-external</artifactId> |
| <version>1.0-beta-7</version> |
| </extension> |
| </extensions> |
| |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <version>0.8</version> |
| <configuration> |
| <excludes> |
| <exclude>.idea/**/*</exclude> |
| <exclude>readme/**/*</exclude> |
| <exclude>**/licenses/**/*</exclude> |
| <exclude>.git/**/*</exclude> |
| <exclude>**/*.log</exclude> |
| <exclude>**/LICENSE.TXT</exclude> |
| <exclude>**/NOTICE.TXT</exclude> |
| <exclude>**/asm-license.txt</exclude> |
| <exclude>**/facelet-license.txt</exclude> |
| <exclude>.gitignore</exclude> |
| <exclude>**/target/rat.txt</exclude> |
| <exclude>atlassian-ide-plugin.xml</exclude> |
| |
| </excludes> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.scala-tools</groupId> |
| <artifactId>maven-scala-plugin</artifactId> |
| <version>${maven-scala-plugin.scalaVersion}</version> |
| </plugin> |
| <!-- SITE GENERATION --> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.9</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-surefire-report-plugin</artifactId> |
| <version>2.9</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.8</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-site-plugin</artifactId> |
| <version>3.0</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-jxr-plugin</artifactId> |
| <version>2.3</version> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>taglist-maven-plugin</artifactId> |
| <version>2.4</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-changelog-plugin</artifactId> |
| <version>2.2</version> |
| </plugin> |
| |
| </plugins> |
| |
| </pluginManagement> |
| |
| |
| <plugins> |
| |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.5.1</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-javadoc-plugin</artifactId> |
| <version>2.8</version> |
| </plugin> |
| --> |
| <plugin> |
| <artifactId>maven-project-info-reports-plugin</artifactId> |
| <version>2.4</version> |
| </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> |
| <profile> |
| <id>rat</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>validate</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| <distributionManagement> |
| <site> |
| <id>apache-site</id> |
| <name>Apache Website</name> |
| <url>scp://people.apache.org/www/myfaces.apache.org/extensions/scripting/</url> |
| </site> |
| </distributionManagement> |
| </project> |