Skip to content
Commits on Source (4)
target/
.project
.classpath
.settings/
.svn/
bin/
# Intellij
*.ipr
*.iml
.idea
out/
.DS_Store
/bootstrap
/dependencies.xml
.java-version
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
asfMavenTlpStdBuild()
maven-shared-utils (3.3.0-1) unstable; urgency=medium
* Team upload.
* New upstream release
* Standards-Version updated to 4.2.1
-- Emmanuel Bourg <ebourg@apache.org> Thu, 20 Sep 2018 19:29:24 +0200
maven-shared-utils (3.2.1-1) unstable; urgency=medium
* Team upload.
......
......@@ -16,7 +16,7 @@ Build-Depends:
libmaven-javadoc-plugin-java,
libmaven-plugin-testing-java,
maven-debian-helper (>= 2.2~)
Standards-Version: 4.1.4
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/maven-shared-utils.git
Vcs-Browser: https://salsa.debian.org/java-team/maven-shared-utils
Homepage: http://maven.apache.org/shared/maven-shared-utils/
......
......@@ -28,25 +28,21 @@
</parent>
<artifactId>maven-shared-utils</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
<name>Apache Maven Shared Utils</name>
<description>Shared utils without any further dependencies</description>
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-shared-utils.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-shared-utils.git</developerConnection>
<url>https://github.com/apache/maven-shared-utils/tree/${project.scm.tag}</url>
<tag>maven-shared-utils-3.2.1</tag>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.3.0</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.3.0
</developerConnection>
<url>http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-utils-3.3.0</url>
</scm>
<issueManagement>
<system>jira</system>
<url>https://issues.apache.org/jira/browse/MSHARED/component/12326452</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://builds.apache.org/job/maven-box/job/maven-shared-utils/</url>
</ciManagement>
<distributionManagement>
<site>
<id>apache.website</id>
......@@ -108,7 +104,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<version>1.7.1</version>
<version>1.0-alpha-9-stable-1</version>
<scope>provided</scope>
</dependency>
<dependency>
......@@ -120,20 +116,6 @@
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.20.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
......
......@@ -145,8 +145,7 @@ public class CaseTest
// check result
String expectedToUpperCase = upper;
String expectedToLowerCase = lower;
if ( LOCALE_TURKISH.getLanguage().equals( locale.getLanguage() ) ||
new Locale( "az" ).getLanguage().equals( locale.getLanguage() ) )
if ( LOCALE_TURKISH.getLanguage().equals( locale.getLanguage() ) )
{
expectedToUpperCase = upper.replace( DOTLESS_I, DOTTED_I );
expectedToLowerCase = lower.replace( DOTTED_i, DOTLESS_i );
......