|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - |
5 | | - <groupId>org.fugerit.java</groupId> |
6 | | - <artifactId>fj-ee-provider</artifactId> |
7 | | - <version>1.0-SNAPSHOT</version> |
8 | | - <packaging>jar</packaging> |
9 | | - |
10 | | - <name>Java Enterprise Edition Naming Provider</name> |
11 | | - <description>Package for configuration Object Factory</description> |
12 | | - <url>http://www.fugerit.org</url> |
13 | | - |
14 | | - <properties> |
15 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | | - <maven.compiler.source>1.7</maven.compiler.source> |
17 | | - <maven.compiler.target>1.7</maven.compiler.target> |
18 | | - <maven.test.skip>true</maven.test.skip> |
19 | | - <maven-core.version>3.5.2</maven-core.version> |
20 | | - <maven-plugin-api.version>3.5.2</maven-plugin-api.version> |
21 | | - <maven-plugin-annotations.version>3.5</maven-plugin-annotations.version> |
22 | | - <fastutil.version>8.1.0</fastutil.version> |
23 | | - <mvn-source-version>3.1.0</mvn-source-version> |
24 | | - <mvn-javadoc-version>3.1.0</mvn-javadoc-version> |
25 | | - <!-- release dependancies --> |
26 | | - <nexus-version>1.6.8</nexus-version> |
27 | | - <mvn-gpg-version>1.6</mvn-gpg-version> |
28 | | - </properties> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>org.fugerit.java</groupId> |
| 7 | + <artifactId>fj-ee-provider</artifactId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>Java Enterprise Edition Naming Provider</name> |
| 12 | + <description>Package for configuration Object Factory</description> |
| 13 | + <url>http://www.fugerit.org</url> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | + <maven.compiler.source>1.7</maven.compiler.source> |
| 18 | + <maven.compiler.target>1.7</maven.compiler.target> |
| 19 | + <maven.test.skip>true</maven.test.skip> |
| 20 | + <maven-core.version>3.5.2</maven-core.version> |
| 21 | + <maven-plugin-api.version>3.5.2</maven-plugin-api.version> |
| 22 | + <maven-plugin-annotations.version>3.5</maven-plugin-annotations.version> |
| 23 | + <fastutil.version>8.1.0</fastutil.version> |
| 24 | + <mvn-source-version>3.1.0</mvn-source-version> |
| 25 | + <mvn-javadoc-version>3.1.0</mvn-javadoc-version> |
| 26 | + <!-- release dependancies --> |
| 27 | + <nexus-version>1.6.8</nexus-version> |
| 28 | + <mvn-gpg-version>1.6</mvn-gpg-version> |
| 29 | + </properties> |
29 | 30 |
|
30 | 31 | <licenses> |
31 | 32 | <license> |
|
49 | 50 | <organizationUrl>http://www.fugerit.org</organizationUrl> |
50 | 51 | </developer> |
51 | 52 | </developers> |
52 | | - |
| 53 | + |
53 | 54 | <scm> |
54 | 55 | <connection>scm:git:git://github.com/fugerit-org/fj-ee-provider.git</connection> |
55 | 56 | <developerConnection>scm:git:ssh:github.com/fugerit-org/fj-ee-provider.git</developerConnection> |
|
61 | 62 | <id>ossrh</id> |
62 | 63 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
63 | 64 | </snapshotRepository> |
64 | | - </distributionManagement> |
65 | | - |
66 | | - <dependencies> |
67 | | - <dependency> |
68 | | - <groupId>org.apache.maven</groupId> |
69 | | - <artifactId>maven-core</artifactId> |
70 | | - <version>${maven-core.version}</version> |
71 | | - <scope>provided</scope> |
72 | | - <exclusions> |
73 | | - <exclusion> |
74 | | - <groupId>com.google.guava</groupId> |
75 | | - <artifactId>guava</artifactId> |
76 | | - </exclusion> |
77 | | - <exclusion> |
78 | | - <groupId>org.codehaus.plexus</groupId> |
79 | | - <artifactId>plexus-utils</artifactId> |
80 | | - </exclusion> |
81 | | - </exclusions> |
82 | | - </dependency> |
83 | | - <dependency> |
84 | | - <groupId>org.apache.maven</groupId> |
85 | | - <artifactId>maven-plugin-api</artifactId> |
86 | | - <version>${maven-plugin-api.version}</version> |
87 | | - <scope>provided</scope> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>org.apache.maven.plugin-tools</groupId> |
91 | | - <artifactId>maven-plugin-annotations</artifactId> |
92 | | - <version>${maven-plugin-annotations.version}</version> |
93 | | - <scope>provided</scope> |
94 | | - <exclusions> |
95 | | - <exclusion> |
96 | | - <groupId>org.apache.maven</groupId> |
97 | | - <artifactId>maven-artifact</artifactId> |
98 | | - </exclusion> |
99 | | - </exclusions> |
100 | | - </dependency> |
101 | | - <dependency> |
102 | | - <groupId>org.eclipse.sisu</groupId> |
103 | | - <artifactId>org.eclipse.sisu.plexus</artifactId> |
104 | | - <version>0.3.3</version> |
105 | | - <exclusions> |
106 | | - <exclusion> |
107 | | - <groupId>org.codehaus.plexus</groupId> |
108 | | - <artifactId>plexus-utils</artifactId> |
109 | | - </exclusion> |
110 | | - </exclusions> |
111 | | - </dependency> |
112 | | - </dependencies> |
113 | | - |
114 | | - <build> |
115 | | - <plugins> |
116 | | - <plugin> |
117 | | - <groupId>org.apache.maven.plugins</groupId> |
118 | | - <artifactId>maven-source-plugin</artifactId> |
119 | | - <version>3.0.1</version> |
120 | | - <executions> |
121 | | - <execution> |
122 | | - <id>attach-sources</id> |
123 | | - <goals> |
124 | | - <goal>jar</goal> |
125 | | - </goals> |
126 | | - </execution> |
127 | | - </executions> |
128 | | - </plugin> |
129 | | - <plugin> |
130 | | - <groupId>org.apache.maven.plugins</groupId> |
131 | | - <artifactId>maven-plugin-plugin</artifactId> |
132 | | - <version>3.5</version> |
133 | | - <configuration> |
134 | | - <goalPrefix>freemarker</goalPrefix> |
135 | | - </configuration> |
136 | | - <executions> |
137 | | - <execution> |
138 | | - <id>default-descriptor</id> |
139 | | - <goals> |
140 | | - <goal>descriptor</goal> |
141 | | - </goals> |
142 | | - <phase>process-classes</phase> |
143 | | - </execution> |
144 | | - </executions> |
145 | | - </plugin> |
146 | | - </plugins> |
147 | | - </build> |
148 | | - |
| 65 | + </distributionManagement> |
| 66 | + |
| 67 | + <build> |
| 68 | + <plugins> |
| 69 | + <plugin> |
| 70 | + <groupId>org.apache.maven.plugins</groupId> |
| 71 | + <artifactId>maven-source-plugin</artifactId> |
| 72 | + <version>${mvn-source-version}</version> |
| 73 | + <executions> |
| 74 | + <execution> |
| 75 | + <id>attach-sources</id> |
| 76 | + <goals> |
| 77 | + <goal>jar</goal> |
| 78 | + </goals> |
| 79 | + </execution> |
| 80 | + </executions> |
| 81 | + </plugin> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-plugin-plugin</artifactId> |
| 85 | + <version>3.5</version> |
| 86 | + <configuration> |
| 87 | + <goalPrefix>freemarker</goalPrefix> |
| 88 | + </configuration> |
| 89 | + <executions> |
| 90 | + <execution> |
| 91 | + <id>default-descriptor</id> |
| 92 | + <goals> |
| 93 | + <goal>descriptor</goal> |
| 94 | + </goals> |
| 95 | + <phase>process-classes</phase> |
| 96 | + </execution> |
| 97 | + </executions> |
| 98 | + </plugin> |
| 99 | + </plugins> |
| 100 | + </build> |
| 101 | + |
149 | 102 | <profiles> |
150 | 103 | <profile> |
151 | 104 | <id>full</id> |
152 | 105 | <build> |
153 | | - <pluginManagement> |
154 | | - <plugins> |
155 | | - <plugin> |
156 | | - <groupId>org.apache.maven.plugins</groupId> |
157 | | - <artifactId>maven-source-plugin</artifactId> |
158 | | - <version>${mvn-source-version}</version> |
159 | | - <executions> |
160 | | - <execution> |
161 | | - <id>attach-sources</id> |
162 | | - <goals> |
163 | | - <goal>jar</goal> |
164 | | - </goals> |
165 | | - </execution> |
166 | | - </executions> |
167 | | - </plugin> |
168 | | - <plugin> |
169 | | - <groupId>org.apache.maven.plugins</groupId> |
170 | | - <artifactId>maven-javadoc-plugin</artifactId> |
171 | | - <version>${mvn-javadoc-version}</version> |
172 | | - <executions> |
173 | | - <execution> |
174 | | - <id>attach-javadocs</id> |
175 | | - <goals> |
176 | | - <goal>jar</goal> |
177 | | - </goals> |
178 | | - </execution> |
179 | | - </executions> |
180 | | - </plugin> |
181 | | - </plugins> |
182 | | - </pluginManagement> |
| 106 | + |
| 107 | + <plugins> |
| 108 | + |
| 109 | + <plugin> |
| 110 | + <groupId>org.apache.maven.plugins</groupId> |
| 111 | + <artifactId>maven-source-plugin</artifactId> |
| 112 | + <version>${mvn-source-version}</version> |
| 113 | + <executions> |
| 114 | + <execution> |
| 115 | + <id>attach-sources</id> |
| 116 | + <goals> |
| 117 | + <goal>jar</goal> |
| 118 | + </goals> |
| 119 | + </execution> |
| 120 | + </executions> |
| 121 | + </plugin> |
| 122 | + <plugin> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 125 | + <version>${mvn-javadoc-version}</version> |
| 126 | + <configuration> |
| 127 | + <stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile> |
| 128 | + </configuration> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <id>attach-javadocs</id> |
| 132 | + <goals> |
| 133 | + <goal>jar</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + |
| 139 | + </plugins> |
| 140 | + |
183 | 141 | </build> |
184 | | - </profile> |
185 | | - |
| 142 | + </profile> |
| 143 | + |
186 | 144 | <profile> |
187 | 145 | <id>doRelease</id> |
188 | 146 | <build> |
|
213 | 171 | </executions> |
214 | 172 | </plugin> |
215 | 173 | </plugins> |
216 | | - </build> |
| 174 | + </build> |
217 | 175 | </profile> |
218 | | - |
219 | | - </profiles> |
220 | | - |
| 176 | + |
| 177 | + </profiles> |
| 178 | + |
221 | 179 | </project> |
0 commit comments