1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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" xml:space="preserve">
- <!-- Copyright 2016-2020 Steinar Bang -->
- <!-- -->
- <!-- Licensed 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. -->
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>ukelonn</artifactId>
- <groupId>no.priv.bang.ukelonn</groupId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>karaf</artifactId>
- <packaging>pom</packaging>
- <name>Ukelonn webapp karaf feature repository</name>
- <dependencies>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.db.liquibase.test</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.db.liquibase.production</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>no.priv.bang.ukelonn</groupId>
- <artifactId>ukelonn.web.frontend</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <id>filter-resources</id>
- <phase>validate</phase>
- <goals>
- <goal>resources</goal>
- </goals>
- <configuration>
- <resources>
- <resource>
- <directory>src/main/filtered-resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>3.0.0</version>
- <inherited>false</inherited>
- <executions>
- <execution>
- <id>attach-karaf-feature</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <artifact>
- <file>target/classes/feature.xml</file>
- <type>xml</type>
- <classifier>features</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|