Skip to content

Commit

Permalink
Add new plugin org.jboss.tools.hibernate.runtime.common
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Jan 29, 2015
1 parent 8b3255a commit 011dfd1
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 0 deletions.
1 change: 1 addition & 0 deletions features/org.hibernate.eclipse.feature/feature.xml
Expand Up @@ -58,6 +58,7 @@
<plugin id="org.hibernate.eclipse.help" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.hibernate.eclipse.jdt.ui" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.hibernate.eclipse.mapper" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jboss.tools.hibernate.runtime.common" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jboss.tools.hibernate.runtime.v_3_5" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jboss.tools.hibernate.runtime.v_3_6" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
<plugin id="org.jboss.tools.hibernate.runtime.v_4_0" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
Expand Down
7 changes: 7 additions & 0 deletions plugins/org.jboss.tools.hibernate.runtime.common/.classpath
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
28 changes: 28 additions & 0 deletions plugins/org.jboss.tools.hibernate.runtime.common/.project
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.jboss.tools.hibernate.runtime.common</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.jboss.ide.eclipse.as.core.singledeployable.deployableList=
@@ -0,0 +1,9 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate Tools Service Provider Interface
Bundle-Vendor: JBoss by Red Hat
Bundle-SymbolicName: org.jboss.tools.hibernate.runtime.common;singleton:=true
Bundle-Version: 5.0.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.10.0"
Bundle-ActivationPolicy: lazy
@@ -0,0 +1,4 @@
source.. = src/
output.. = target/classes/
bin.includes = META-INF/,\
.
13 changes: 13 additions & 0 deletions plugins/org.jboss.tools.hibernate.runtime.common/pom.xml
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
<version>5.0.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.runtime.common</artifactId>

<packaging>eclipse-plugin</packaging>
</project>
1 change: 1 addition & 0 deletions plugins/pom.xml
Expand Up @@ -28,6 +28,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<module>org.jboss.tools.hibernate.ui</module>
<module>org.jboss.tools.hibernate.xml</module>
<module>org.jboss.tools.hibernate.xml.ui</module>
<module>org.jboss.tools.hibernate.runtime.common</module>
<module>org.jboss.tools.hibernate.runtime.v_3_5</module>
<module>org.jboss.tools.hibernate.runtime.v_3_6</module>
<module>org.jboss.tools.hibernate.runtime.v_4_0</module>
Expand Down

0 comments on commit 011dfd1

Please sign in to comment.