This repository has been archived on 2025-12-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcommon-studio-se/main/plugins/org.talend.librariesmanager/plugin.xml
pyzhou e817b3799d fix(TDI-46572): tMap support Java17 (#4659)
* fix(TDI-46572):add jboss dependency to routines

* add to .m2

* fix(TDI-46572):advancedPersistentLookup lib upgrade

* replace advancedPersistentLookupLib jar

* change name

* format

* upgrade jar

* add back dependency

* remove LGPL dependency

* Remove binary jar and copy during build

* fix NPE

* test remove jboss from build
2021-10-21 10:43:04 +08:00

88 lines
3.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
point="org.talend.core.runtime.service">
<Service
class="org.talend.librariesmanager.model.service.LibrariesService"
serviceId="ILibrariesService"/>
<Service
class="org.talend.librariesmanager.model.service.RoutinesProviderService"
serviceId="IRoutinesService">
</Service>
<Service
class="org.talend.librariesmanager.model.service.LocalLibraryManager"
serviceId="ILibraryManagerService">
</Service>
</extension>
<extension
point="org.eclipse.emf.ecore.generated_package">
<package
class="org.talend.librariesmanager.emf.librariesindex.LibrariesindexPackage"
genModel="model/librariesindex.genmodel"
uri="www.talend.com/librariesindex">
</package>
</extension>
<extension point="org.eclipse.emf.ecore.extension_parser">
<!-- @generated librariesindex -->
<parser
type="librariesindex"
class="org.talend.librariesmanager.emf.librariesindex.util.LibrariesindexResourceFactoryImpl"/>
</extension>
<extension
point="org.talend.core.runtime.librariesNeeded">
<libraryNeeded
context="plugin:org.talend.librariesmanager"
id="slf4j-api-@@SLF4J_VERSION@@.jar"
mvn_uri="mvn:org.slf4j/slf4j-api/@@SLF4J_VERSION@@"
name="slf4j-api-@@SLF4J_VERSION@@.jar"
required="true">
</libraryNeeded>
<libraryNeeded
context="plugin:org.talend.librariesmanager"
id="crypto-utils-@@CRYPTOUTILS_VERSION@@.jar"
mvn_uri="mvn:org.talend.daikon/crypto-utils/@@CRYPTOUTILS_VERSION@@"
name="crypto-utils-@@CRYPTOUTILS_VERSION@@.jar"
required="true">
</libraryNeeded>
</extension>
<extension
point="org.talend.core.systemRoutineLibrary">
<systemRoutine
name="SharedDBConnectionLog4j">
<library
name="slf4j-api-@@SLF4J_VERSION@@.jar">
</library>
</systemRoutine>
<systemRoutine
name="PasswordEncryptUtil">
<library
name="crypto-utils-@@CRYPTOUTILS_VERSION@@.jar">
</library>
</systemRoutine>
<systemRoutine
name="IPersistableLookupRow">
<library
name="mvn:org.jboss.marshalling/jboss-marshalling/2.0.12.Final">
</library>
</systemRoutine>
</extension>
<extension
point="org.talend.core.runtime.artifact_handler">
<handler
class="org.talend.librariesmanager.nexus.Nexus2RepositoryHandler"
type="NEXUS_2">
</handler>
<handler
class="org.talend.librariesmanager.nexus.Nexus3RepositoryHandler"
type="NEXUS_3">
</handler>
<handler
class="org.talend.librariesmanager.nexus.ArtifacoryRepositoryHandler"
type="ARTIFACTORY">
</handler>
</extension>
</plugin>