Skip to content

Commit

Permalink
Add every bit of information in pom.xml to publish to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
ghsnd committed Oct 31, 2023
1 parent 94097f2 commit 3591369
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ General:
IteratorSerializabilityTest, StreamSerializabilityTest, ObservableSerializabilityTest
]
except:
- master
- main
- development
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.3] - 2023-10-31

### Fixed
- Version number + required info for publishing to maven central in pom.xml

## [1.0.2] - 2023-10-31

### Fixed
Expand Down Expand Up @@ -55,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated excel-streaming-reader to 4.0.5
- Updated jena-fuseki-* to 4.9.0

[1.0.3]: https://github.com/RMLio/dataio/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/RMLio/dataio/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/RMLio/dataio/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/RMLio/dataio/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The easiest is to include DataIO as a maven dependency:
<dependency>
<groupId>be.ugent.idlab.knows</groupId>
<artifactId>dataio</artifactId>
<version>v1.0.1</version>
<version>v1.0.3</version>
</dependency>
```
Check the [maven central repository](https://central.sonatype.com/search?q=be.ugent.idlab.knows&namespace=be.ugent.idlab.knows&name=dataio)
Expand Down
42 changes: 41 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,50 @@
<modelVersion>4.0.0</modelVersion>
<groupId>be.ugent.idlab.knows</groupId>
<artifactId>dataio</artifactId>
<version>1.0.0</version>
<version>1.0.3</version>
<name>dataio</name>
<packaging>jar</packaging>
<url>https://github.com/RMLio/dataio</url>
<description>
DataIO allows iterating over different kinds of data sources.
</description>
<licenses>
<license>
<name>The MIT License</name>
<url>https://raw.githubusercontent.com/RMLio/dataio/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://[email protected]:RMLio/dataio.git</connection>
<url>https://github.com/RMLio/dataio</url>
</scm>
<developers>
<developer>
<id>ghsnd</id>
<name>Gerald Haesendonck</name>
<email>[email protected]</email>
</developer>
<developer>
<id>jjankaj</id>
<name>Jozef Jankaj</name>
<email>[email protected]</email>
</developer>
<developer>
<id>rvrijsse</id>
<name>Robbe Van Rijsselberghe</name>
</developer>
<developer>
<id>thabils</id>
<name>Tibe Habils</name>
<email>[email protected]</email>
</developer>
<developer>
<id>anemchyn</id>
<name>Aliaksandra Nemchynava</name>
<email>[email protected]</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 3591369

Please sign in to comment.