Skip to content

Commit 2fdeae3

Browse files
committed
Changed distribution repo.
1 parent 733cf7a commit 2fdeae3

1 file changed

Lines changed: 56 additions & 104 deletions

File tree

pom.xml

Lines changed: 56 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2929
<modelVersion>4.0.0</modelVersion>
3030

31-
<groupId>com.surevine</groupId>
31+
<groupId>com.codekutter</groupId>
3232
<artifactId>ews-java-api</artifactId>
3333

34-
<version>2.16-SNAPSHOT</version>
34+
<version>2.0-SNAPSHOT</version>
3535

3636
<name>Exchange Web Services Java API</name>
3737
<description>Exchange Web Services (EWS) Java API</description>
@@ -49,29 +49,10 @@
4949
</prerequisites>
5050

5151
<organization>
52-
<name>Surevine</name>
53-
<url>https://www.surevine.com/</url>
52+
<name>CodeKutter</name>
53+
<url>https://github.com/subhagho/ews-java-api</url>
5454
</organization>
5555

56-
<developers>
57-
<developer>
58-
<id>vboctor</id>
59-
<name>Victor Boctor</name>
60-
<email>[email protected]</email>
61-
<url>http://www.github.com/officedev/ews-java-api</url>
62-
<organization>Microsoft</organization>
63-
<organizationUrl>http://www.microsoft.com</organizationUrl>
64-
<roles>
65-
<role>administrator</role>
66-
<role>developer</role>
67-
</roles>
68-
<timezone>America/New_York</timezone>
69-
<properties>
70-
<picUrl>http://www.example.com/jdoe/pic</picUrl>
71-
</properties>
72-
</developer>
73-
</developers>
74-
7556
<properties>
7657
<!-- Eliminates the file encoding warning. Of course, all of your files
7758
should probably be UTF-8 nowadays. -->
@@ -184,41 +165,65 @@
184165
</profile>
185166
</profiles>
186167

187-
<licenses>
188-
<license>
189-
<name>MIT License</name>
190-
<url>http://opensource.org/licenses/MIT</url>
191-
<distribution>repo</distribution>
192-
</license>
193-
</licenses>
194-
195-
<issueManagement>
196-
<url>https://github.com/OfficeDev/ews-java-api/issues</url>
197-
<system>GitHub Issues</system>
198-
</issueManagement>
199-
200-
<ciManagement>
201-
<system>travis</system>
202-
<url>https://travis-ci.org/OfficeDev/ews-java-api</url>
203-
</ciManagement>
204-
205-
<scm>
206-
<url>https://github.com/OfficeDev/ews-java-api</url>
207-
<connection>scm:git:ssh://[email protected]:OfficeDev/ews-java-api.git</connection>
208-
<developerConnection>scm:git:ssh://[email protected]:OfficeDev/ews-java-api.git</developerConnection>
209-
</scm>
168+
210169

211170
<distributionManagement>
171+
<!--repository>
172+
<id>internal.repo</id>
173+
<name>Temporary Staging Repository</name>
174+
<url>file://${zconfig.common.target}/</url>
175+
</repository -->
212176
<snapshotRepository>
213-
<id>ossrh-snapshot</id>
177+
<id>ossrh</id>
214178
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
215179
</snapshotRepository>
180+
<!--snapshotRepository>
181+
<id>release</id>
182+
<url>https://pkgs.dev.azure.com/codekutter/codekutter/_packaging/release/maven/v1</url>
183+
</snapshotRepository-->
216184
<repository>
217-
<id>ossrh</id>
218-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
185+
<id>release</id>
186+
<url>https://pkgs.dev.azure.com/codekutter/codekutter/_packaging/release/maven/v1</url>
219187
</repository>
188+
<!-- repository>
189+
<id>release</id>
190+
<name>Azure DevOps Release</name>
191+
<url>https://pkgs.dev.azure.com/codekutter/codekutter/_packaging/release/maven/v1</url>
192+
</repository>
193+
<snapshotRepository>
194+
<id>release</id>
195+
<name>Azure DevOps Release</name>
196+
<url>https://pkgs.dev.azure.com/codekutter/codekutter/_packaging/release/maven/v1</url>
197+
</snapshotRepository -->
220198
</distributionManagement>
221199

200+
<repositories>
201+
<repository>
202+
<id>snapshots-repo</id>
203+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
204+
<releases>
205+
<enabled>false</enabled>
206+
</releases>
207+
<snapshots>
208+
<enabled>true</enabled>
209+
</snapshots>
210+
</repository>
211+
<repository>
212+
<id>release</id>
213+
<url>https://pkgs.dev.azure.com/codekutter/codekutter/_packaging/release/maven/v1</url>
214+
<releases>
215+
<enabled>true</enabled>
216+
</releases>
217+
<snapshots>
218+
<enabled>true</enabled>
219+
</snapshots>
220+
</repository>
221+
<repository>
222+
<id>confluent</id>
223+
<url>http://packages.confluent.io/maven/</url>
224+
</repository>
225+
</repositories>
226+
222227
<dependencies>
223228
<dependency>
224229
<groupId>org.apache.httpcomponents</groupId>
@@ -331,7 +336,7 @@
331336
<target>${javaLanguage.version}</target>
332337
</configuration>
333338
</plugin>
334-
<plugin>
339+
<!--plugin>
335340
<groupId>org.apache.maven.plugins</groupId>
336341
<artifactId>maven-javadoc-plugin</artifactId>
337342
<version>${maven-javadoc-plugin.version}</version>
@@ -348,7 +353,7 @@
348353
</goals>
349354
</execution>
350355
</executions>
351-
</plugin>
356+
</plugin -->
352357
<plugin>
353358
<groupId>org.apache.maven.plugins</groupId>
354359
<artifactId>maven-source-plugin</artifactId>
@@ -418,57 +423,4 @@
418423
</plugins>
419424
</pluginManagement>
420425
</build>
421-
422-
<reporting>
423-
<plugins>
424-
<!-- Basic report generation. -->
425-
<plugin>
426-
<groupId>org.apache.maven.plugins</groupId>
427-
<artifactId>maven-project-info-reports-plugin</artifactId>
428-
<version>${maven-project-info-reports-plugin.version}</version>
429-
</plugin>
430-
431-
<!-- Dependency version reporting. Relies on standard version numbering
432-
- you should use standard version numbering too!
433-
http://mojo.codehaus.org/versions-maven-plugin/version-rules.html -->
434-
<plugin>
435-
<groupId>org.codehaus.mojo</groupId>
436-
<artifactId>versions-maven-plugin</artifactId>
437-
<version>${versions-maven-plugin.version}</version>
438-
<reportSets>
439-
<reportSet>
440-
<reports>
441-
<report>dependency-updates-report</report>
442-
<report>plugin-updates-report</report>
443-
<report>property-updates-report</report>
444-
</reports>
445-
</reportSet>
446-
</reportSets>
447-
</plugin>
448-
449-
<!-- Generates the Javadoc for the report. -->
450-
<!-- <plugin>
451-
<groupId>org.apache.maven.plugins</groupId>
452-
<artifactId>maven-javadoc-plugin</artifactId>
453-
<version>${maven-javadoc-plugin.version}</version>
454-
<configuration>
455-
<linksource>true</linksource>
456-
<additionalparam>${javadoc.doclint.param}</additionalparam>
457-
</configuration>
458-
</plugin> -->
459-
460-
<!-- Generates a nice HTML linked source cross-reference. -->
461-
<plugin>
462-
<groupId>org.apache.maven.plugins</groupId>
463-
<artifactId>maven-jxr-plugin</artifactId>
464-
<version>${maven-jxr-plugin.version}</version>
465-
</plugin>
466-
467-
<plugin>
468-
<groupId>org.apache.maven.plugins</groupId>
469-
<artifactId>maven-surefire-report-plugin</artifactId>
470-
<version>${maven-surefire-report-plugin.version}</version>
471-
</plugin>
472-
</plugins>
473-
</reporting>
474426
</project>

0 commit comments

Comments
 (0)