dynamo-angular
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dynamoframework</groupId> <artifactId>dynamo-angular</artifactId> <version>4.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>dynamo-angular</artifactId> <packaging>jar</packaging> <name>Angular</name> <description>Dynamo Framework Angular project.</description> <url>https://www.dynamoframework.org</url> <parent> <groupId>org.dynamoframework</groupId> <artifactId>dynamo-parent</artifactId> <version>4.0.0</version> </parent> <properties> <stagingDirectory>../target/staging/maven</stagingDirectory> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <versionRange>1.12.0</versionRange> <goals> <goal>install-node-and-npm</goal> <goal>npm</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>1.15.1</version> <configuration> <workingDirectory>src/main/dynamo/</workingDirectory> <installDirectory>target</installDirectory> </configuration> <executions> <!-- Install npm + ng --> <execution> <id>install-node-and-npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <configuration> <nodeVersion>${node.version}</nodeVersion> <npmVersion>${npm.version}</npmVersion> </configuration> <phase>initialize</phase> </execution> <execution> <id>npm-install</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>install</arguments> </configuration> </execution> <!-- Set main + library versions to match artifact --> <execution> <id>npm-version</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>version --allow-same-version ${project.version}</arguments> </configuration> <phase>generate-resources</phase> </execution> <!-- Build --> <execution> <id>npm-build</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run build</arguments> </configuration> <phase>prepare-package</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <resources> <resource> <directory>src/main/</directory> <includes> <include>.npmrc</include> </includes> </resource> </resources> <outputDirectory>src/main/dynamo/dist/dynamo-angular</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <roots>dynamo,shared</roots> </configuration> </plugin> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <stagingDirectory>../target/staging/maven</stagingDirectory> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>npm-publish</id> <properties> <node.auth_token/> </properties> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <version>1.15.1</version> <configuration> <workingDirectory>src/main/dynamo/</workingDirectory> <installDirectory>target</installDirectory> </configuration> <executions> <execution> <id>fixate-version</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>version --allow-same-version ${project.version}</arguments> <workingDirectory>src/main/dynamo/dist/dynamo-angular</workingDirectory> </configuration> <phase>package</phase> </execution> <execution> <id>publish</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>publish --access public</arguments> <workingDirectory>src/main/dynamo/dist/dynamo-angular</workingDirectory> </configuration> <phase>deploy</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>