Issue #2984 remove unnecessary dependencies on edex
Change-Id: Iad6ebd93d0ec6cd3823042f8ef2653dac963c746 Former-commit-id:2561050293
[formerlyef43b2d325
] [formerly2253938ed5
] [formerly2561050293
[formerlyef43b2d325
] [formerly2253938ed5
] [formerlydf4171b29d
[formerly2253938ed5
[formerly 39d1f72292414d008c0899dac616e76c8c0f2512]]]] Former-commit-id:df4171b29d
Former-commit-id:d6a968cac2
[formerly4011b1351f
] [formerly 024b55876a4025da8b49a4ff3d68557b772e23a5 [formerly24c8b0a327
]] Former-commit-id: 25c60d2192a236220a6b597edaac8c5cc4d3c07b [formerly5795254827
] Former-commit-id:cc150c8a1a
This commit is contained in:
parent
b4e489d0e1
commit
f84adac681
11 changed files with 27 additions and 117 deletions
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: Monitor Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.viz.monitor;singleton:=true
|
||||
Eclipse-RegisterBuddy: com.raytheon.viz.core, com.raytheon.uf.viz.core, com.raytheon.viz.ui, com.raytheon.uf.common.serialization
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Activator: com.raytheon.uf.viz.monitor.Activator
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
@ -13,7 +13,6 @@ Require-Bundle: org.eclipse.ui,
|
|||
com.raytheon.viz.ui;bundle-version="1.10.13",
|
||||
org.geotools;bundle-version="2.4.0",
|
||||
com.raytheon.viz.alerts;bundle-version="1.10.13",
|
||||
com.raytheon.uf.edex.decodertools;bundle-version="1.0.0",
|
||||
com.raytheon.uf.common.monitor;bundle-version="1.11.17",
|
||||
org.apache.commons.lang;bundle-version="2.3.0",
|
||||
com.raytheon.uf.common.wxmath
|
||||
|
|
|
@ -3,12 +3,10 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: Profiler Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.viz.profiler;singleton:=true
|
||||
Eclipse-RegisterBuddy: com.raytheon.viz.core, com.raytheon.uf.viz.core, com.raytheon.viz.ui, com.raytheon.uf.common.serialization
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Bundle-Activator: com.raytheon.uf.viz.profiler.Activator
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Require-Bundle: com.raytheon.uf.common.pointdata;bundle-version="1.11.9",
|
||||
com.raytheon.viz.pointdata;bundle-version="1.11.4",
|
||||
com.raytheon.uf.edex.decodertools;bundle-version="1.11.9",
|
||||
com.raytheon.viz.core;bundle-version="1.11.4",
|
||||
com.raytheon.viz.core.graphing;bundle-version="1.11.4",
|
||||
org.eclipse.ui,
|
||||
|
|
|
@ -1,87 +0,0 @@
|
|||
package com.raytheon.uf.viz.profiler;
|
||||
/**
|
||||
* This software was developed and / or modified by Raytheon Company,
|
||||
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
||||
*
|
||||
* U.S. EXPORT CONTROLLED TECHNICAL DATA
|
||||
* This software product contains export-restricted data whose
|
||||
* export/transfer/disclosure is restricted by U.S. law. Dissemination
|
||||
* to non-U.S. persons whether in the United States or abroad requires
|
||||
* an export license or other authorization.
|
||||
*
|
||||
* Contractor Name: Raytheon Company
|
||||
* Contractor Address: 6825 Pine Street, Suite 340
|
||||
* Mail Stop B8
|
||||
* Omaha, NE 68106
|
||||
* 402.291.0100
|
||||
*
|
||||
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
||||
* further licensing information.
|
||||
**/
|
||||
|
||||
import org.eclipse.jface.resource.ImageDescriptor;
|
||||
import org.eclipse.ui.plugin.AbstractUIPlugin;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* The activator class controls the plug-in life cycle
|
||||
*/
|
||||
public class Activator extends AbstractUIPlugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "com.raytheon.uf.viz.qpf";
|
||||
|
||||
// The shared instance
|
||||
private static Activator plugin;
|
||||
|
||||
/**
|
||||
* The constructor
|
||||
*/
|
||||
public Activator() {
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
*
|
||||
* @see
|
||||
* org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext
|
||||
* )
|
||||
*/
|
||||
public void start(BundleContext context) throws Exception {
|
||||
super.start(context);
|
||||
plugin = this;
|
||||
}
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
*
|
||||
* @see
|
||||
* org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext
|
||||
* )
|
||||
*/
|
||||
public void stop(BundleContext context) throws Exception {
|
||||
plugin = null;
|
||||
super.stop(context);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the shared instance
|
||||
*
|
||||
* @return the shared instance
|
||||
*/
|
||||
public static Activator getDefault() {
|
||||
return plugin;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an image descriptor for the image file at the given plug-in
|
||||
* relative path
|
||||
*
|
||||
* @param path
|
||||
* the path
|
||||
* @return the image descriptor
|
||||
*/
|
||||
public static ImageDescriptor getImageDescriptor(String path) {
|
||||
return imageDescriptorFromPlugin(PLUGIN_ID, path);
|
||||
}
|
||||
}
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Gfe Common Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.gfe
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
|
||||
Eclipse-BuddyPolicy: ext
|
||||
Bundle-Vendor: RAYTHEON
|
||||
|
@ -43,9 +43,7 @@ Export-Package: com.raytheon.uf.common.dataplugin.gfe,
|
|||
com.raytheon.uf.common.dataplugin.gfe.util,
|
||||
com.raytheon.uf.common.dataplugin.gfe.weather,
|
||||
com.raytheon.uf.common.dataplugin.gfe.weatherelement
|
||||
Import-Package: com.raytheon.edex.exception,
|
||||
com.raytheon.edex.util,
|
||||
com.raytheon.uf.common.activetable,
|
||||
Import-Package: com.raytheon.uf.common.activetable,
|
||||
com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.dataplugin.annotations,
|
||||
com.raytheon.uf.common.dataplugin.persist,
|
||||
|
|
|
@ -2,10 +2,10 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Ldadhydro
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.ldadhydro
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization
|
||||
Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
|
||||
Import-Package: com.raytheon.uf.common.dataplugin,
|
||||
com.raytheon.uf.common.dataplugin.annotations,
|
||||
com.raytheon.uf.common.dataplugin.persist,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Madis
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.dataplugin.madis
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Export-Package: com.raytheon.uf.common.dataplugin.madis
|
||||
Require-Bundle: javax.persistence;bundle-version="1.0.0",
|
||||
|
@ -11,7 +11,6 @@ Require-Bundle: javax.persistence;bundle-version="1.0.0",
|
|||
com.raytheon.uf.common.pointdata;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.common.serialization;bundle-version="1.12.1174",
|
||||
javax.measure;bundle-version="1.0.0",
|
||||
com.raytheon.edex.common;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.common.status;bundle-version="1.12.1174"
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
|
|
|
@ -2,12 +2,13 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Hydrocommon Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.hydro
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Require-Bundle: org.geotools;bundle-version="2.5.2",
|
||||
com.raytheon.uf.common.geospatial;bundle-version="1.11.9",
|
||||
com.raytheon.edex.common;bundle-version="1.11.9",
|
||||
com.raytheon.uf.common.dataaccess
|
||||
com.raytheon.uf.common.dataaccess,
|
||||
com.raytheon.uf.common.serialization,
|
||||
com.raytheon.uf.common.util;bundle-version="1.14.0"
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Export-Package: com.raytheon.uf.common.hydro.service,
|
||||
|
|
|
@ -2,8 +2,8 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Cpg Plug-in
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.monitor.cpg
|
||||
Bundle-Version: 1.12.1174.qualifier
|
||||
Eclipse-RegisterBuddy: com.raytheon.edex.common, com.raytheon.uf.common.serialization
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Eclipse-RegisterBuddy: com.raytheon.uf.common.serialization
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
|
|
|
@ -4,12 +4,12 @@ Bundle-Name: Mpe Plug-in
|
|||
Bundle-SymbolicName: com.raytheon.uf.common.mpe
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Require-Bundle: com.raytheon.edex.common,
|
||||
org.geotools,
|
||||
Require-Bundle: org.geotools,
|
||||
org.apache.commons.lang,
|
||||
javax.persistence;bundle-version="1.0.0",
|
||||
javax.measure;bundle-version="1.0.0",
|
||||
com.raytheon.uf.common.serialization.comm
|
||||
com.raytheon.uf.common.serialization.comm,
|
||||
com.raytheon.uf.common.serialization
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Export-Package: com.raytheon.uf.common.mpe.constants,
|
||||
com.raytheon.uf.common.mpe.fieldgen,
|
||||
|
|
|
@ -2,18 +2,18 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Ebxml
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.registry.schemas.ebxml
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Require-Bundle: javax.persistence;bundle-version="1.0.0",
|
||||
org.hibernate;bundle-version="1.0.0",
|
||||
com.raytheon.uf.common.serialization;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.common.dataplugin;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.edex.database;bundle-version="1.0.0",
|
||||
org.apache.commons.cxf;bundle-version="1.0.0",
|
||||
com.raytheon.uf.common.status;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.common.util;bundle-version="1.12.1174",
|
||||
org.reflections;bundle-version="0.9.9"
|
||||
org.reflections;bundle-version="0.9.9",
|
||||
org.springframework;bundle-version="3.1.4"
|
||||
Export-Package: com.raytheon.uf.common.registry,
|
||||
com.raytheon.uf.common.registry.schemas.ebxml.util,
|
||||
com.raytheon.uf.common.registry.schemas.ebxml.util.annotations,
|
||||
|
|
|
@ -2,15 +2,17 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Tafqueue
|
||||
Bundle-SymbolicName: com.raytheon.uf.common.tafqueue
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Version: 1.14.0.qualifier
|
||||
Bundle-Vendor: RAYTHEON
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Require-Bundle: com.raytheon.edex.common;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.common.serialization.comm;bundle-version="1.12.1174",
|
||||
Require-Bundle: com.raytheon.uf.common.serialization.comm,
|
||||
javax.persistence;bundle-version="1.0.0",
|
||||
org.apache.commons.lang;bundle-version="2.3.0",
|
||||
com.raytheon.uf.common.status;bundle-version="1.12.1174",
|
||||
com.raytheon.uf.common.auth;bundle-version="1.12.1174"
|
||||
com.raytheon.uf.common.status,
|
||||
com.raytheon.uf.common.auth,
|
||||
com.raytheon.uf.common.serialization,
|
||||
org.hibernate;bundle-version="3.5.6"
|
||||
Export-Package: com.raytheon.uf.common.tafqueue
|
||||
Import-Package: com.raytheon.uf.common.localization,
|
||||
Import-Package: com.raytheon.uf.common.dataplugin.persist,
|
||||
com.raytheon.uf.common.localization,
|
||||
org.apache.commons.configuration
|
||||
|
|
Loading…
Add table
Reference in a new issue