Skip to content

Commit b99c81f

Browse files
Merge pull request #3 from opentripplanner/add-xsi
Add XSI namespace
2 parents c975fd3 + 28ec8c0 commit b99c81f

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is available in the central maven repository, see https://central.s
1313
For example, to use this in a maven project use:
1414
```xml
1515
<dependency>
16-
<groupId>de.vdv</groupId>
16+
<groupId>org.opentripplanner</groupId>
1717
<artifactId>ojp-java-model</artifactId>
1818
<version>1.0.3</version>
1919
</dependency>

package-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
@jakarta.xml.bind.annotation.XmlNs(prefix = "siri", namespaceURI = "http://www.siri.org.uk/siri"),
99
@jakarta.xml.bind.annotation.XmlNs(prefix = "netex", namespaceURI = "http://www.netex.org.uk/netex"),
1010
@jakarta.xml.bind.annotation.XmlNs(prefix = "opengis", namespaceURI = "http://www.opengis.net/gml/3.2"),
11+
@jakarta.xml.bind.annotation.XmlNs(prefix = "xsi", namespaceURI = "http://www.w3.org/2001/XMLSchema-instance"),
1112
}
1213
)
1314
package de.vdv.ojp20;

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1717
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1818
<modelVersion>4.0.0</modelVersion>
19-
<groupId>de.vdv</groupId>
19+
<groupId>org.opentripplanner</groupId>
2020
<artifactId>ojp-java-model</artifactId>
21-
<version>2.0.0-SNAPSHOT</version>
21+
<version>2.0.2</version>
2222

2323
<name>ojp-java-model</name>
2424
<description>Generates Java model from OJP xsds using jaxb.</description>
2525
<url>https://github.com/bliksemlabs/ojp-java-model</url>
2626
<organization>
27-
<name>Bliksem Labs B.V.</name>
28-
<url>http://www.bliksemlabs.com/</url>
27+
<name>OpenTripPlanner</name>
28+
<url>https://www.opentripplanner.org/</url>
2929
</organization>
3030
<licenses>
3131
<license>
@@ -43,9 +43,9 @@
4343
</developer>
4444
</developers>
4545
<scm>
46-
<connection>scm:git:ssh://git@github.com/bliksemlabs/ojp-java-model.git</connection>
47-
<developerConnection>scm:git:ssh://git@github.com/bliksemlabs/ojp-java-model.git</developerConnection>
48-
<url>https://github.com/bliksemlabs/ojp-java-model/tree/master</url>
46+
<connection>scm:git:ssh://git@github.com/opentripplanner/ojp-java-model.git</connection>
47+
<developerConnection>scm:git:ssh://git@github.com/opentripplanner/ojp-java-model.git</developerConnection>
48+
<url>https://github.com/opentripplanner/ojp-java-model/</url>
4949
<tag>HEAD</tag>
5050
</scm>
5151

@@ -534,7 +534,7 @@
534534
<extensions>true</extensions>
535535
<configuration>
536536
<serverId>ossrh</serverId>
537-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
537+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
538538
<!-- Set this to true and the release will automatically proceed and sync to Central Repository will follow -->
539539
<autoReleaseAfterClose>true</autoReleaseAfterClose>
540540
</configuration>

0 commit comments

Comments
 (0)