diff options
author | John Ross | 2013-08-21 13:50:56 -0400 |
---|---|---|
committer | John Ross | 2013-08-21 13:56:46 -0400 |
commit | cd940bf8013c9db305eda9a3006178577dcfd859 (patch) | |
tree | 32e0ebb8bfa27f82d9aaa9fa108c7ce7ace9eebb | |
parent | d9439a16cf6015e8c9c318c4c6e7533574569a81 (diff) | |
download | rt.equinox.bundles-cd940bf8013c9db305eda9a3006178577dcfd859.zip rt.equinox.bundles-cd940bf8013c9db305eda9a3006178577dcfd859.tar.gz rt.equinox.bundles-cd940bf8013c9db305eda9a3006178577dcfd859.tar.xz |
[Bug 415461] Unnecessary @SuppressWarnings("hiding")
Added a warning suppression to pom.xml just as it had previously been added to build.properties under the old build
structure.
Update bundle version.
Updated copyright.
-rw-r--r-- | bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF | 2 | ||||
-rw-r--r-- | bundles/org.eclipse.equinox.metatype/pom.xml | 18 |
2 files changed, 17 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF index 17bd206..dbf4a94 100644 --- a/bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF @@ -1,6 +1,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: %bundleName -Bundle-Version: 1.3.0.qualifier +Bundle-Version: 1.3.100.qualifier Bundle-SymbolicName: org.eclipse.equinox.metatype Bundle-Activator: org.eclipse.equinox.metatype.impl.Activator Import-Package: javax.xml.parsers, diff --git a/bundles/org.eclipse.equinox.metatype/pom.xml b/bundles/org.eclipse.equinox.metatype/pom.xml index 6ce0c0d..9e08dc2 100644 --- a/bundles/org.eclipse.equinox.metatype/pom.xml +++ b/bundles/org.eclipse.equinox.metatype/pom.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright (c) 2012 Eclipse Foundation. + Copyright (c) 2012, 2013 Eclipse Foundation. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, and is available at @@ -19,6 +19,20 @@ </parent> <groupId>org.eclipse.equinox</groupId> <artifactId>org.eclipse.equinox.metatype</artifactId> - <version>1.3.0-SNAPSHOT</version> + <version>1.3.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-compiler-plugin</artifactId> + <version>${tycho.version}</version> + <configuration> + <compilerArgs> + <arg>-warn:-hiding</arg> + </compilerArgs> + </configuration> + </plugin> + </plugins> + </build> </project> |