-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpom.xml
166 lines (150 loc) · 7.07 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is the Maven project definition for the the JJ2000 library. Assuming you
have Maven installed, you would build the jar by issuing the following command:
mvn install
Assuming all goes well, the "target" directory should now contain a jar named
"jj2000-5.2-SNAPSHOT" (or whatever version is current). (The "install" Maven
goal will also copy the jar to your local Maven repository.)
If you want to tinker with the source in Eclipse, issue the following command:
mvn eclipse:eclipse
This will generate the necessary Eclipse project files. Then from Eclipse,
choose the option to import an existing project into your workspace. Navigate
to this directory, select the project from the list, and you should be off and
running.
-->
<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">
<distributionManagement>
<repository>
<id>unidata-releases</id>
<name>UNIDATA Releases</name>
<url>https://artifacts.unidata.ucar.edu/content/repositories/unidata-releases/</url>
</repository>
<snapshotRepository>
<id>unidata-snapshots</id>
<name>UNIDATA Snapshots</name>
<url>https://artifacts.unidata.ucar.edu/content/repositories/unidata-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>ISO8859-1</project.build.sourceEncoding>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>edu.ucar</groupId>
<artifactId>jj2000</artifactId>
<version>5.5-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Unidata jj2000</name>
<description>Fork of jpeg2k code from https://code.google.com/p/jj2000/.
This is a dependency for support of compression in Grib2 files in netCDF-java and TDS.
This repo is NOT under active development other than updates for bug fixes.
Implementing new features and functionality for this code base is beyond the current scope
of our development and support for the THREDDS project.
We welcome bug fixes and other contributions to this code.
</description>
<url>https://github.com/Unidata/jj2000</url>
<scm>
<connection>scm:git:http://github.com/Unidata/jj2000.git</connection>
<developerConnection>scm:git:http://github.com/Unidata/jj2000.git</developerConnection>
<url>https://github.com/Unidata/jj2000.git</url>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>jj2000 License</name>
<url>https://github.com/Unidata/jj2000/blob/master/COPYRIGHT</url>
</license>
</licenses>
<organization>
<name>UCAR/Unidata</name>
<url>http://www.unidata.ucar.edu/</url>
</organization>
<developers>
<developer>
<id>unidata</id>
<name>Unidata</name>
<email>[email protected]</email>
<roles>
<role>maintainer</role>
<role>publisher</role>
</roles>
</developer>
</developers>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http-lightweight</artifactId>
<version>1.0</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<quiet>true</quiet>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<!--<Implementation-Build>${implementation.build}</Implementation-Build>-->
<Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
<X-Compile-Source-JDK>1.7</X-Compile-Source-JDK>
<X-Compile-Target-JDK>1.7</X-Compile-Target-JDK>
</manifestEntries>
</archive>
<!-- See http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<!--<Implementation-Build>${implementation.build}</Implementation-Build>-->
<Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
<X-Compile-Source-JDK>1.7</X-Compile-Source-JDK>
<X-Compile-Target-JDK>1.7</X-Compile-Target-JDK>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>