osnz-web-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nz.net.osnz.parent</groupId> <artifactId>osnz-web-parent</artifactId> <version>1.2</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nz.net.osnz.parent</groupId> <artifactId>groovy-parent</artifactId> <version>2.6</version> </parent> <groupId>nz.net.osnz.parent</groupId> <artifactId>osnz-web-parent</artifactId> <packaging>pom</packaging> <version>1.2</version> <name>Open Source New Zealand : OSNZ Web parent</name> <description>Common OSNZ Web Module</description> <url>https://github.com/OpenSourceNZ/osnz-web-parent</url> <scm> <url>https://github.com/OpenSourceNZ/osnz-web-parent</url> <connection>scm:git:git@github.com:OpenSourceNZ/osnz-web-parent.git</connection> <developerConnection>scm:git:git@github.com:OpenSourceNZ/osnz-web-parent.git</developerConnection> <tag>osnz-web-parent-1.2</tag> </scm> <properties> <jetty.config.scanIntervalSeconds>20</jetty.config.scanIntervalSeconds> <jetty.config.contextPath>/osnz</jetty.config.contextPath> <jetty.config.logbackFile>logback.xml</jetty.config.logbackFile> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.2.1.v20140609</version> <configuration> <scanIntervalSeconds>${jetty.config.scanIntervalSeconds}</scanIntervalSeconds> <webApp> <contextPath>${jetty.config.contextPath}</contextPath> <resourceBases> <resourcesAsCSV>${basedir}/src/main/resources/META-INF/resources/,${basedir}/src/main/webapp/</resourcesAsCSV> </resourceBases> </webApp> <systemProperties> <systemProperty> <name>logback.configurationFile</name> <value>${jetty.config.logbackFile}</value> </systemProperty> </systemProperties> </configuration> </plugin> <plugin> <groupId>com.bluetrainsoftware.bathe.web</groupId> <artifactId>bathe-jetty-jspc-maven-plugin</artifactId> <version>1.3</version> <executions> <execution> <id>war-compile-jsp</id> <goals> <goal>jspc</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.jasig.maven</groupId> <artifactId>sass-maven-plugin</artifactId> <version>1.1.1</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>update-stylesheets</goal> </goals> </execution> </executions> <configuration> <resources> <resource> <source> <directory>${basedir}/src/main/resources/META-INF/resources/scss</directory> <includes> <include>**/*.scss</include> </includes> <excludes> <exclude>**/watch-settings</exclude> </excludes> </source> <destination>${basedir}/src/main/resources/META-INF/resources/css/scss</destination> </resource> </resources> <useCompass>true</useCompass> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>