WebSite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.prompto</groupId> <artifactId>WebSite</artifactId> <version>0.0.51</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> <groupId>org.prompto</groupId> <artifactId>WebSite</artifactId> <version>0.0.51</version> <properties> <prompto.version>0.1.57</prompto.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.9.0</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>prompto.website.Application</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>1.6</version> <configuration> <nodeVersion>v14.17.0</nodeVersion> <yarnVersion>v1.22.10</yarnVersion> <workingDirectory>src/web</workingDirectory> <installDirectory>../tools</installDirectory> </configuration> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-yarn</goal> </goals> </execution> <execution> <id>yarn install</id> <goals> <goal>yarn</goal> </goals> <configuration> <arguments>install</arguments> </configuration> </execution> <execution> <id>yarn build</id> <goals> <goal>yarn</goal> </goals> <phase>generate-resources</phase> <configuration> <arguments>build</arguments> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>src/web/build</directory> <excludes> <!-- provided by Server --> <exclude>js/lib/require.js</exclude> </excludes> </resource> </resources> </build> <dependencies> <dependency> <groupId>org.prompto</groupId> <artifactId>Server</artifactId> <version>${prompto.version}</version> </dependency> </dependencies> <name>Prompto Documentation Web Site</name> <description>Prompto Documentation Web Site POM</description> <url>http://www.prompto.org</url> <organization> <name>Prompto</name> <url>http://www.prompto.org</url> </organization> <licenses> <license> <name>The Prompto License</name> <url>http://www.prompto.org/license.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Eric Vergnaud</name> <url>https://github.com/ericvergnaud</url> <roles> <role>Project lead</role> </roles> </developer> </developers> <scm> <connection>scm:git:https://github.com/prompto/prompto-docs</connection> <developerConnection>scm:git:https://github.com/prompto/prompto-docs</developerConnection> <tag>Prompto-Docs-${project.version}</tag> <url>https://github.com/prompto/prompto-docs</url> </scm> <profiles> <profile> <id>deploy</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>