|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 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"> |
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
7 | 5 | <groupId>edu.ksu.canvas</groupId> |
8 | 6 | <artifactId>canvas-api</artifactId> |
9 | | - <version>1.9.0-LONG-SNAPSHOT</version> |
| 7 | + <version>1.9.0-SNAPSHOT</version> |
10 | 8 | <packaging>jar</packaging> |
11 | 9 |
|
12 | 10 | <parent> |
|
19 | 17 | <description>A native Java library to talk to the Canvas REST API</description> |
20 | 18 | <url>https://github.com/kstateome/canvas-api</url> |
21 | 19 |
|
22 | | - <licenses> |
| 20 | + <licenses> |
23 | 21 | <license> |
24 | 22 | <name>GNU Lesser General Public License (LGPL), Version 3</name> |
25 | 23 | <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url> |
|
42 | 40 | <organization>Kansas State University, Office of Mediated Education</organization> |
43 | 41 | </developer> |
44 | 42 | </developers> |
| 43 | + |
| 44 | + <scm> |
| 45 | + < connection>scm:git:ssh:// [email protected]/kstateome/canvas-api.git</ connection> |
| 46 | + < developerConnection>scm:git:ssh:// [email protected]/kstateome/canvas-api.git</ developerConnection> |
| 47 | + <url>https://github.com/kstateome/canvas-api</url> |
| 48 | + <tag>HEAD</tag> |
| 49 | + </scm> |
| 50 | + |
| 51 | + <distributionManagement> |
| 52 | + <repository> |
| 53 | + <id>ome-appdev-release</id> |
| 54 | + <url>https://artifactory.ome.k-state.edu/artifactory/ome-appdev-release</url> |
| 55 | + </repository> |
| 56 | + <snapshotRepository> |
| 57 | + <id>ome-appdev-snapshot</id> |
| 58 | + <url>https://artifactory.ome.k-state.edu/artifactory/ome-appdev-snapshot</url> |
| 59 | + </snapshotRepository> |
| 60 | + <site> |
| 61 | + <id>canvas-api-site</id> |
| 62 | + <url>file:///var/www/maven-site/canvas-api</url> |
| 63 | + </site> |
| 64 | + </distributionManagement> |
45 | 65 |
|
46 | 66 | <build> |
47 | 67 | <plugins> |
48 | | - <plugin> |
49 | | - <groupId>org.apache.maven.plugins</groupId> |
50 | | - <artifactId>maven-source-plugin</artifactId> |
51 | | - <version>3.0.1</version> |
52 | | - <executions> |
53 | | - <execution> |
54 | | - <id>attach-sources</id> |
55 | | - <goals> |
56 | | - <goal>jar-no-fork</goal> |
57 | | - </goals> |
58 | | - </execution> |
59 | | - </executions> |
60 | | - </plugin> |
61 | 68 | <plugin> |
62 | 69 | <groupId>org.owasp</groupId> |
63 | 70 | <artifactId>dependency-check-maven</artifactId> |
|
158 | 165 | </profile> |
159 | 166 | <profile> |
160 | 167 | <id>ossrh-deploy</id> |
| 168 | + <distributionManagement> |
| 169 | + <snapshotRepository> |
| 170 | + <id>ossrh</id> |
| 171 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 172 | + </snapshotRepository> |
| 173 | + <repository> |
| 174 | + <id>ossrh</id> |
| 175 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 176 | + </repository> |
| 177 | + </distributionManagement> |
161 | 178 | <build> |
162 | 179 | <plugins> |
163 | 180 | <plugin> |
|
355 | 372 | <groupId>org.slf4j</groupId> |
356 | 373 | <artifactId>slf4j-simple</artifactId> |
357 | 374 | <version>1.7.27</version> |
358 | | - <!-- This is so that TestLauncher has an implementation but projects |
359 | | - using this library don't get it --> |
| 375 | + <!-- This is so that TestLauncher has an implementation but projects using this library don't get it --> |
360 | 376 | <optional>true</optional> |
361 | 377 | </dependency> |
362 | 378 | <dependency> |
|
384 | 400 | <version>4.13.1</version> |
385 | 401 | <scope>test</scope> |
386 | 402 | </dependency> |
387 | | - <dependency> |
| 403 | + <dependency> |
388 | 404 | <groupId>org.springframework</groupId> |
389 | 405 | <artifactId>spring-beans</artifactId> |
390 | 406 | <version>4.2.0.RELEASE</version> |
|
0 commit comments