|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
| 1 | +<?xml version="1.0" encoding="UTF-8" ?> |
2 | 2 | <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">
|
3 |
| - <modelVersion>4.0.0</modelVersion> |
4 |
| - <groupId>ru.sbtqa</groupId> |
5 |
| - <artifactId>monte-media</artifactId> |
6 |
| - <version>1.0.1-SNAPSHOT</version> |
7 |
| - <packaging>jar</packaging> |
8 |
| - |
9 |
| - <name>monte-media</name> |
10 |
| - <description>monte-media description</description> |
11 |
| - <url>http://github.com/sbtqa/qa-utils</url> |
12 |
| - <licenses> |
13 |
| - <license> |
14 |
| - <name>The Apache Software License, Version 2.0</name> |
15 |
| - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
16 |
| - </license> |
17 |
| - </licenses> |
18 |
| - <developers> |
19 |
| - <developer> |
20 |
| - <name>Werner Randelshofer</name> |
21 |
| - |
22 |
| - </developer> |
23 |
| - </developers> |
24 |
| - <scm> |
25 |
| - <connection>scm:git:git://github.com/sbtqa/monte-media</connection> |
26 |
| - <developerConnection>scm:git:ssh://github.com:sbtqa/monte-media.git</developerConnection> |
27 |
| - <url>https://github.com/sbtqa/monte-media/tree/master</url> |
28 |
| - </scm> |
29 |
| - |
30 |
| - <properties> |
31 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
32 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
33 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
34 |
| - </properties> |
35 |
| - |
36 |
| - <distributionManagement> |
37 |
| - <snapshotRepository> |
38 |
| - <id>ossrh</id> |
39 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
40 |
| - </snapshotRepository> |
41 |
| - <repository> |
42 |
| - <id>ossrh</id> |
43 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
44 |
| - </repository> |
45 |
| - </distributionManagement> |
46 |
| - |
47 |
| - <dependencies> |
48 |
| - <dependency> |
49 |
| - <groupId>org.mongodb</groupId> |
50 |
| - <artifactId>mongo-java-driver</artifactId> |
51 |
| - <version>3.2.2</version> |
52 |
| - <type>jar</type> |
53 |
| - </dependency> |
54 |
| - <dependency> |
55 |
| - <groupId>commons-io</groupId> |
56 |
| - <artifactId>commons-io</artifactId> |
57 |
| - <version>2.5</version> |
58 |
| - <type>jar</type> |
59 |
| - </dependency> |
60 |
| - <dependency> |
61 |
| - <groupId>junit</groupId> |
62 |
| - <artifactId>junit</artifactId> |
63 |
| - <version>4.12</version> |
64 |
| - <scope>test</scope> |
65 |
| - <type>jar</type> |
66 |
| - </dependency> |
67 |
| - <dependency> |
68 |
| - <groupId>org.apache.poi</groupId> |
69 |
| - <artifactId>poi-ooxml</artifactId> |
70 |
| - <version>3.13</version> |
71 |
| - </dependency> |
72 |
| - </dependencies> |
73 |
| - |
74 |
| - <build> |
75 |
| - <plugins> |
76 |
| - <plugin> |
77 |
| - <groupId>org.apache.maven.plugins</groupId> |
78 |
| - <artifactId>maven-compiler-plugin</artifactId> |
79 |
| - <version>3.3</version> |
80 |
| - </plugin> |
81 |
| - <plugin> |
82 |
| - <groupId>org.sonatype.plugins</groupId> |
83 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
84 |
| - <version>1.6.3</version> |
85 |
| - <extensions>true</extensions> |
86 |
| - <configuration> |
87 |
| - <serverId>ossrh</serverId> |
88 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
89 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
90 |
| - </configuration> |
91 |
| - </plugin> |
92 |
| - <plugin> |
93 |
| - <groupId>org.apache.maven.plugins</groupId> |
94 |
| - <artifactId>maven-source-plugin</artifactId> |
95 |
| - <version>2.2.1</version> |
96 |
| - <executions> |
97 |
| - <execution> |
98 |
| - <id>attach-sources</id> |
99 |
| - <goals> |
100 |
| - <goal>jar-no-fork</goal> |
101 |
| - </goals> |
102 |
| - </execution> |
103 |
| - </executions> |
104 |
| - </plugin> |
105 |
| - <plugin> |
106 |
| - <groupId>org.apache.maven.plugins</groupId> |
107 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
108 |
| - <version>2.9.1</version> |
109 |
| - <executions> |
110 |
| - <execution> |
111 |
| - <id>attach-javadocs</id> |
112 |
| - <goals> |
113 |
| - <goal>jar</goal> |
114 |
| - </goals> |
115 |
| - </execution> |
116 |
| - </executions> |
117 |
| - </plugin> |
118 |
| - <plugin> |
119 |
| - <groupId>org.apache.maven.plugins</groupId> |
120 |
| - <artifactId>maven-gpg-plugin</artifactId> |
121 |
| - <version>1.5</version> |
122 |
| - <executions> |
123 |
| - <execution> |
124 |
| - <id>sign-artifacts</id> |
125 |
| - <phase>verify</phase> |
126 |
| - <goals> |
127 |
| - <goal>sign</goal> |
128 |
| - </goals> |
129 |
| - </execution> |
130 |
| - </executions> |
131 |
| - </plugin> |
132 |
| - </plugins> |
133 |
| - </build> |
134 |
| - |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>ru.sbtqa</groupId> |
| 5 | + <artifactId>monte-media</artifactId> |
| 6 | + <version>1.0.1-SNAPSHOT</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>monte-media</name> |
| 9 | + <description>monte-media description</description> |
| 10 | + <url>http://github.com/sbtqa/qa-utils</url> |
| 11 | + <licenses> |
| 12 | + <license> |
| 13 | + <name>The Apache Software License, Version 2.0</name> |
| 14 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 15 | + </license> |
| 16 | + </licenses> |
| 17 | + <developers> |
| 18 | + <developer> |
| 19 | + <name>Werner Randelshofer</name> |
| 20 | + |
| 21 | + </developer> |
| 22 | + </developers> |
| 23 | + <scm> |
| 24 | + <connection>scm:git:git://github.com/sbtqa/monte-media</connection> |
| 25 | + <developerConnection>scm:git:ssh://github.com:sbtqa/monte-media.git</developerConnection> |
| 26 | + <url>https://github.com/sbtqa/monte-media/tree/master</url> |
| 27 | + </scm> |
| 28 | + <properties> |
| 29 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 30 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 31 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 32 | + </properties> |
| 33 | + <distributionManagement> |
| 34 | + <snapshotRepository> |
| 35 | + <id>ossrh</id> |
| 36 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 37 | + </snapshotRepository> |
| 38 | + <repository> |
| 39 | + <id>ossrh</id> |
| 40 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 41 | + </repository> |
| 42 | + </distributionManagement> |
| 43 | + <dependencies> |
| 44 | + <dependency> |
| 45 | + <groupId>org.mongodb</groupId> |
| 46 | + <artifactId>mongo-java-driver</artifactId> |
| 47 | + <version>3.2.2</version> |
| 48 | + <type>jar</type> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>commons-io</groupId> |
| 52 | + <artifactId>commons-io</artifactId> |
| 53 | + <version>2.5</version> |
| 54 | + <type>jar</type> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>junit</groupId> |
| 58 | + <artifactId>junit</artifactId> |
| 59 | + <version>4.12</version> |
| 60 | + <scope>test</scope> |
| 61 | + <type>jar</type> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.apache.poi</groupId> |
| 65 | + <artifactId>poi-ooxml</artifactId> |
| 66 | + <version>3.13</version> |
| 67 | + </dependency> |
| 68 | + </dependencies> |
| 69 | +<!-- <build> |
| 70 | + <plugins> |
| 71 | + <plugin> |
| 72 | + <groupId>org.apache.maven.plugins</groupId> |
| 73 | + <artifactId>maven-compiler-plugin</artifactId> |
| 74 | + <version>3.3</version> |
| 75 | + </plugin> |
| 76 | + <plugin> |
| 77 | + <groupId>org.sonatype.plugins</groupId> |
| 78 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 79 | + <version>1.6.3</version> |
| 80 | + <extensions>true</extensions> |
| 81 | + <configuration> |
| 82 | + <serverId>ossrh</serverId> |
| 83 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 84 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 85 | + </configuration> |
| 86 | + </plugin> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-source-plugin</artifactId> |
| 90 | + <version>2.2.1</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-sources</id> |
| 94 | + <goals> |
| 95 | + <goal>jar-no-fork</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 103 | + <version>2.9.1</version> |
| 104 | + <executions> |
| 105 | + <execution> |
| 106 | + <id>attach-javadocs</id> |
| 107 | + <goals> |
| 108 | + <goal>jar</goal> |
| 109 | + </goals> |
| 110 | + </execution> |
| 111 | + </executions> |
| 112 | + </plugin> |
| 113 | + <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
| 115 | + <artifactId>maven-gpg-plugin</artifactId> |
| 116 | + <version>1.5</version> |
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>sign-artifacts</id> |
| 120 | + <phase>verify</phase> |
| 121 | + <goals> |
| 122 | + <goal>sign</goal> |
| 123 | + </goals> |
| 124 | + </execution> |
| 125 | + </executions> |
| 126 | + </plugin> |
| 127 | + </plugins> |
| 128 | + </build>--> |
135 | 129 | </project>
|
0 commit comments