nuiton-js-angular-ui-bootstrap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-angular-ui-bootstrap</artifactId> <version>0.11.0-2</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- ************************************************************* --> <!-- *** POM Relationships *************************************** --> <!-- ************************************************************* --> <parent> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-lib</artifactId> <version>1.0.2</version> </parent> <artifactId>nuiton-js-angular-ui-bootstrap</artifactId> <version>0.11.0-2</version> <name>Nuiton JS :: AngularJS UI-Bootstrap</name> <description>Bootstrap components written in pure AngularJS by the AngularUI Team</description> <url>http://angular-ui.github.io/bootstrap/</url> <properties> <license.licenseName>mit</license.licenseName> <upstreamVersion>0.11.0</upstreamVersion> <upstreamUrl>http://angular-ui.github.io/bootstrap/</upstreamUrl> <upstreamFile>ui-bootstrap-tpls-${upstreamVersion}.js</upstreamFile> <destDir>${project.build.outputDirectory}/META-INF/resources/${project.artifactId}</destDir> </properties> <licenses> <license> <name>MIT License</name> <url>https://raw.github.com/angular-ui/ui-utils/master/LICENSE</url> </license> </licenses> <scm> <connection>scm:svn:https://svn.nuiton.org/nuiton-js/nuiton-js-angular-ui-bootstrap/tags/nuiton-js-angular-ui-bootstrap-0.11.0-2</connection> <developerConnection>scm:svn:https://svn.nuiton.org/nuiton-js/nuiton-js-angular-ui-bootstrap/tags/nuiton-js-angular-ui-bootstrap-0.11.0-2</developerConnection> <url>https://forge.nuiton.org/projects/nuiton-js/repository/show/nuiton-js-angular-ui-bootstrap/tags/nuiton-js-angular-ui-bootstrap-0.11.0-2</url> </scm> <dependencies> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-angularjs</artifactId> <version>1.2.10-1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-bootstrap</artifactId> <version>3.1.1-1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.nuiton.js</groupId> <artifactId>nuiton-js-test</artifactId> <version>1.0.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> <executions> <execution> <phase>process-resources</phase> <goals> <goal>download-single</goal> </goals> <configuration> <url>${upstreamUrl}</url> <fromFile>${upstreamFile}</fromFile> <toFile>${project.build.directory}/${upstreamFile}</toFile> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <echo message="moving resources" /> <copy todir="${destDir}" file="${project.build.directory}/${upstreamFile}" /> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>