All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.batik.Version Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest 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.

 */
package org.apache.batik;

/**
 * This class defines the Batik version number.
 *
 * @author Vincent Hardy
 * @version $Id: Version.java 1808978 2017-09-20 09:23:26Z ssteiner $
 */
public final class Version {

    /**
     * Returns the Batik version.
     * 

* This is based on the Implementation-Version attribute in the * batik-util.jar (which is where this Version class lives) and * the 'HeadURL' SVN keyword. The keyword be substituted with * the URL of this file, which is then inspected to determine if this * file was compiled from the trunk, a tag (a release version), or a * branch. The format of the returned string will be one of the * following: *

* * * * * * * * * * * * * * * * * * * * * *
SourceVersion string
Release versionversion
Trunkversion+rrevision
Branchversion+rrevision; branch-name
Unknowndevelopment version
*

* Prior to release 1.7, the version string would * be the straight tag (e.g. "batik-1_6") or the * string "development.version". revision is the * Subversion working copy's revision number. *

*/ public static String getVersion() { Package pkg = Version.class.getPackage(); String version = null; if (pkg != null) { version = pkg.getImplementationVersion(); } String headURL = "$HeadURL: https://svn.apache.org/repos/asf/xmlgraphics/batik/branches/maven/batik-util" + "/src/main/java/org/apache/batik/Version.java $"; String prefix = "$HeadURL: "; String suffix = "/sources/org/apache/batik/Version.java $"; if (headURL.startsWith(prefix) && headURL.endsWith(suffix)) { headURL = headURL.substring (prefix.length(), headURL.length() - suffix.length()); if (!headURL.endsWith("/trunk")) { int index1 = headURL.lastIndexOf('/'); int index2 = headURL.lastIndexOf('/', index1 - 1); String name = headURL.substring(index1 + 1); String type = headURL.substring(index2 + 1, index1); String tagPrefix = "batik-"; if (type.equals("tags") && name.startsWith(tagPrefix)) { // Release, just use the tag name version = name.substring(tagPrefix.length()) .replace('_', '.'); } else if (type.equals("branches")) { // SVN branch version += "; " + name; } } } if (version == null) { version = "development version"; } return version; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy