Merge pull request #1229 from scm-manager/feature/update_metadata

update project metadata in order to fix deb and rpm package information
This commit is contained in:
René Pfeuffer
2020-07-02 09:25:55 +02:00
committed by GitHub
6 changed files with 45 additions and 8 deletions

View File

@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed restart with deb or rpm installation ([#1222](https://github.com/scm-manager/scm-manager/issues/1222) and [#1227](https://github.com/scm-manager/scm-manager/pull/1227))
- Fixed broken migration with empty security.xml ([#1219](https://github.com/scm-manager/scm-manager/issues/1219) and [#1221](https://github.com/scm-manager/scm-manager/pull/1221))
- Added missing architecture to debian installation documentation ([#1230](https://github.com/scm-manager/scm-manager/pull/1230))
- Fixed wrong package information for deb and rpm packages ([#1229](https://github.com/scm-manager/scm-manager/pull/1229))
## [2.1.1] - 2020-06-23

View File

@@ -5,7 +5,7 @@
</p>
The easiest way to share and manage your Git, Mercurial and Subversion
repositories over http.
repositories.
- Very easy installation
- No need to hack configuration files, SCM-Manager is completely

35
pom.xml
View File

@@ -35,12 +35,17 @@
<version>2.2.0-SNAPSHOT</version>
<description>
The easiest way to share your Git, Mercurial
and Subversion repositories over http.
and Subversion repositories.
</description>
<name>scm</name>
<url>https://github.com/scm-manager/scm-manager</url>
<organization>
<name>Cloudogu GmbH</name>
<url>https://cloudogu.com</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
@@ -50,9 +55,33 @@
<developers>
<developer>
<id>sdorra</id>
<id>sebastian.sdorra</id>
<name>Sebastian Sdorra</name>
<email>s.sdorra@gmail.com</email>
<email>sebastian.sdorra@cloudogu.com</email>
<timezone>Europe/Berlin</timezone>
</developer>
<developer>
<id>rene.pfeuffer</id>
<name>Rene Pfeufer</name>
<email>rene.pfeuffer@cloudogu.com</email>
<timezone>Europe/Berlin</timezone>
</developer>
<developer>
<id>eduard.heimbuch</id>
<name>Eduard Heimbuch</name>
<email>eduard.heimbuch@cloudogu.com</email>
<timezone>Europe/Berlin</timezone>
</developer>
<developer>
<id>florian.scholdei</id>
<name>Florian Scholdei</name>
<email>florian.scholdei@cloudogu.com</email>
<timezone>Europe/Berlin</timezone>
</developer>
<developer>
<id>Konstantin Schaper</id>
<name>Konstantin Schaper</name>
<email>konstantin.schaper@cloudogu.com</email>
<timezone>Europe/Berlin</timezone>
</developer>
</developers>

View File

@@ -133,7 +133,6 @@
</mapper>
</data>
<data>
<type>file</type>
<src>src/main/fs/etc/scm/logging.xml</src>

View File

@@ -3,7 +3,8 @@ Version: [[version]]
Section: devel
Priority: extra
Architecture: all
Description: The easiest way to share and manage your Git, Mercurial and Subversion repositories over http
Maintainer: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
Description: The easiest way to share and manage your Git, Mercurial and Subversion repositories
Maintainer: SCM-Team <scm-team@cloudogu.com>
Homepage: https://scm-manager.org
Depends: adduser, procps, psmisc, net-tools
Recommends: openjdk-11-jre-headless, mercurial

View File

@@ -41,6 +41,12 @@
<description>Packaging for RedHat/Centos/Fedora</description>
<name>rpm</name>
<!--
de.dentrassi.maven:rpm
has no other way to set the url of the package
-->
<url>https://scm-manager.org</url>
<dependencies>
<dependency>
@@ -103,6 +109,8 @@
<configuration>
<attach>true</attach>
<packageName>scm-server</packageName>
<summary>SCM-Manager Server</summary>
<description>The easiest way to share and manage your Git, Mercurial and Subversion repositories</description>
<group>Development/Tools</group>
<license>MIT</license>
<skipSigning>true</skipSigning>
@@ -278,7 +286,6 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>