Jian Li | c6c76dc | 2016-01-26 14:22:51 -0800 | [diff] [blame] | 1 | #set( $dummy = "" ) |
| 2 | #set( $date = $dummy.getClass().forName("java.util.Date").newInstance() ) |
| 3 | #set( $format = $dummy.getClass().forName("java.text.SimpleDateFormat").newInstance() ) |
| 4 | #set( $pattern = $format.applyPattern("yyyy") ) |
| 5 | #set( $year = $format.format($date) ) |
HIGUCHI Yuta | e7bfaae | 2016-02-25 10:09:27 -0800 | [diff] [blame] | 6 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 7 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 8 | ~ Copyright ${year} Open Networking Foundation |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 9 | ~ |
| 10 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | ~ you may not use this file except in compliance with the License. |
| 12 | ~ You may obtain a copy of the License at |
| 13 | ~ |
| 14 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | ~ |
| 16 | ~ Unless required by applicable law or agreed to in writing, software |
| 17 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | ~ See the License for the specific language governing permissions and |
| 20 | ~ limitations under the License. |
| 21 | --> |
| 22 | <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"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <groupId>${groupId}</groupId> |
| 26 | <artifactId>${artifactId}</artifactId> |
| 27 | <version>${version}</version> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>ONOS OSGi API bundle archetype</description> |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <properties> |
HIGUCHI Yuta | 9caa3a0 | 2016-01-09 23:17:54 -0800 | [diff] [blame] | 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Ray Milkey | 076c494 | 2019-08-23 13:03:59 -0700 | [diff] [blame^] | 35 | <onos.version>2.3.0-SNAPSHOT</onos.version> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 36 | </properties> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>org.onosproject</groupId> |
| 41 | <artifactId>onos-api</artifactId> |
| 42 | <version>${onos.version}</version> |
| 43 | </dependency> |
| 44 | </dependencies> |
| 45 | |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>maven-bundle-plugin</artifactId> |
Yuta HIGUCHI | f9af3d6 | 2018-02-01 18:20:17 -0800 | [diff] [blame] | 51 | <version>3.3.0</version> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 52 | <extensions>true</extensions> |
| 53 | </plugin> |
Brian O'Connor | 0b35191 | 2014-12-11 14:40:31 -0800 | [diff] [blame] | 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-compiler-plugin</artifactId> |
Yuta HIGUCHI | f9af3d6 | 2018-02-01 18:20:17 -0800 | [diff] [blame] | 57 | <version>3.7.0</version> |
Brian O'Connor | 0b35191 | 2014-12-11 14:40:31 -0800 | [diff] [blame] | 58 | <configuration> |
| 59 | <source>1.8</source> |
| 60 | <target>1.8</target> |
| 61 | </configuration> |
| 62 | </plugin> |
Thomas Vachuska | fc7f22d | 2014-12-04 11:07:01 -0800 | [diff] [blame] | 63 | </plugins> |
| 64 | </build> |
| 65 | |
| 66 | </project> |