Skip to content

Commit

Permalink
CommonAPI-D-Bus-Tools 3.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
juergengehring committed Nov 4, 2016
1 parent bd321b2 commit 6665267
Show file tree
Hide file tree
Showing 39 changed files with 408 additions and 217 deletions.
10 changes: 10 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Changes
=======

v3.1.10
- Upgrade to JDK-1.8.
- Moved mutex lock in 'DemoMainLoop::registerWatch' to avoid deadlock. The mutex was moved after registering the file descriptor. Otherwise a deadlock can occur when 'DemoMainLoop::unregisterWatch' is called in parallel.
- Support DBus message type Error. It is now possible to deploy a broadcast with type 'error'. An error broadcast signals an occured error due to a method call and needs an appropriate error name.
- Replace polling mechanism in Windows main-loop. The current polling mechanism of the main-loops is not reliable under Windows. It is replaced with a WSAPoll on the file descriptors instead of WSAWaitForMultipleEvents on wsa events.
- Fix merge of core type deployments to interfaces and type collections.

36 changes: 1 addition & 35 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,35 +1 @@
= IPC CommonAPI D-Bus Tools C++

:doctitle: IPC CommonAPI D-Bus Tools C++
:version:

== Copyright
Copyright (C) 2015,2016 Bayerische Motoren Werke Aktiengesellschaft (BMW AG).
Copyright (C) 2015,2016 GENIVI Alliance, Inc.

This file is part of GENIVI Project IPC Common API C++.

Contributions are licensed to the GENIVI Alliance under one or more Contribution License Agreements or MPL 2.0.

== License
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, you can obtain one at http://mozilla.org/MPL/2.0/.

== Version
{version}

== CommonAPI C++ Specification and User Guide
The specification document and the user guide can be found in the CommonAPI documentation directory of the CommonAPI-Tools project.

== Further information
Source code and latest news can be found at http://projects.genivi.org/commonapi/.

== Build Instructions for Linux

You can build all code generators by calling maven from the command-line. Open a console and change in the directory org.genivi.commonapi.dbus.releng of your CommonAPI-D-Bus-Tools directory. Then call:
----
mvn -DCOREPATH=<path to your CommonAPI-Tools dir> -Dtarget.id=org.genivi.commonapi.dbus.target clean verify
----
COREPATH is the directory, that contains the target definition folder: org.genivi.commonapi.core.target.


After the successful build you will find the commond-line generators archived in org.genivi.commonapi.dbus.cli.product/target/products/commonapi_dbus_generator.zip and the update-sites in org.genivi.commonapi.dbus.updatesite/target.
Please refer to README.md for the installation instructions.
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.cli.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.genivi.commonapi.dbus.cli.feature"
label="CommonAPI D-Bus CLI Generator Feature"
version="3.1.9.qualifier"
version="3.1.10.qualifier"
provider-name="BMW AG">

<description url="http://www.example.com/description">
Expand Down
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.cli.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>

<product name="CommonAPI D-Bus Code Generator" uid="org.genivi.commonapi.dbus.cli.product" id="org.genivi.commonapi.dbus.cli.product" application="org.genivi.commonapi.console.application" version="3.1.9" useFeatures="true" includeLaunchers="true">
<product name="CommonAPI D-Bus Code Generator" uid="org.genivi.commonapi.dbus.cli.product" id="org.genivi.commonapi.dbus.cli.product" application="org.genivi.commonapi.console.application" version="3.1.10" useFeatures="true" includeLaunchers="true">

<configIni use="default">
</configIni>

<launcherArgs>
<vmArgs>-Dosgi.requiredJavaVersion=1.7 -Xms512m -Xmx512m -XX:PermSize=128m
<vmArgs>-Dosgi.requiredJavaVersion=1.8 -Xms512m -Xmx512m -XX:PermSize=128m
</vmArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
</vmArgsMac>
Expand All @@ -23,7 +23,10 @@
</launcher>

<vm>
<windows include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7</windows>
<linux include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8</linux>
<macos include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8</macos>
<solaris include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8</solaris>
<windows include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8</windows>
</vm>

<plugins>
Expand Down
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.cli.product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
10 changes: 5 additions & 5 deletions org.genivi.commonapi.dbus.cli/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER" />
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins" />
<classpathentry kind="src" path="src" />
<classpathentry kind="output" path="bin" />
</classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
6 changes: 3 additions & 3 deletions org.genivi.commonapi.dbus.cli/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: commonapi D-Bus generator Console Interface
Bundle-SymbolicName: org.genivi.commonapi.dbus.cli;singleton:=true
Bundle-Version: 3.1.9.qualifier
Bundle-Version: 3.1.10.qualifier
Bundle-Activator: org.genivi.commonapi.dbus.cli.Activator
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.xtext;bundle-version="[2.7.0,3.0.0)";visibility:=reexport,
org.franca.core.dsl;bundle-version="[0.9.0,0.10.0)";visibility:=reexport,
org.franca.deploymodel.dsl;bundle-version="[0.9.0,0.10.0)";visibility:=reexport,
org.genivi.commonapi.console,
org.genivi.commonapi.dbus;bundle-version="3.1.9"
org.genivi.commonapi.dbus;bundle-version="3.1.10"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Vendor: BMW AG
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.genivi.commonapi.dbus.feature"
label="%featureName"
version="3.1.9.qualifier"
version="3.1.10.qualifier"
provider-name="%providerName">

<copyright>
Expand Down
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.releng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.releng</relativePath>
</parent>
<repositories>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?><target name="CommonAPI DBus Luna SR1" sequenceNumber="36">
<?pde version="3.8"?><target name="CommonAPI DBus Luna SR1" sequenceNumber="37">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.franca.ui.sdk.feature.group" version="0.9.1.201412191134"/>
Expand All @@ -21,4 +21,5 @@
<repository location="http://download.eclipse.org/releases/luna"/>
</location>
</locations>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
</target>
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.target/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.releng</relativePath>
</parent>
</project>
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.ui/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
8 changes: 4 additions & 4 deletions org.genivi.commonapi.dbus.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: GENIVI Common API DBus UI
Bundle-SymbolicName: org.genivi.commonapi.dbus.ui;singleton:=true
Bundle-Version: 3.1.9.qualifier
Bundle-Version: 3.1.10.qualifier
Bundle-Activator: org.genivi.commonapi.dbus.ui.CommonApiDBusUiPlugin
Bundle-Vendor: BMW AG
Require-Bundle: org.eclipse.ui,
Expand All @@ -14,11 +14,11 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.xtext.builder;bundle-version="[2.7.0,3.0.0)";visibility:=reexport,
org.eclipse.xtext.generator;bundle-version="[2.7.0,3.0.0)";visibility:=reexport,
com.google.inject;bundle-version="3.0.0",
org.genivi.commonapi.core.ui;bundle-version="3.1.9";visibility:=reexport,
org.genivi.commonapi.dbus;bundle-version="3.1.9";visibility:=reexport,
org.genivi.commonapi.core.ui;bundle-version="3.1.10";visibility:=reexport,
org.genivi.commonapi.dbus;bundle-version="3.1.10";visibility:=reexport,
org.franca.core.dsl.ui;bundle-version="0.9.1",
org.franca.deploymodel.dsl.ui;bundle-version="0.9.1"
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Import-Package: javax.inject
Export-Package: org.genivi.commonapi.dbus.ui
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/org.genivi.commonapi.dbus.releng}"/>
</launchConfiguration>
4 changes: 2 additions & 2 deletions org.genivi.commonapi.dbus.updatesite/category.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/org.genivi.commonapi.core.validator.feature_3.1.9.qualifier.jar" id="org.genivi.commonapi.dbus.validator.feature" version="3.1.9.qualifier">
<feature url="features/org.genivi.commonapi.core.validator.feature_3.1.10.qualifier.jar" id="org.genivi.commonapi.dbus.validator.feature" version="3.1.10.qualifier">
<category name="GENIVI CommonAPI"/>
</feature>
<feature url="features/org.genivi.commonapi.dbus.feature_3.1.9.qualifier.jar" id="org.genivi.commonapi.dbus.feature" version="3.1.9.qualifier">
<feature url="features/org.genivi.commonapi.dbus.feature_3.1.10.qualifier.jar" id="org.genivi.commonapi.dbus.feature" version="3.1.10.qualifier">
<category name="GENIVI CommonAPI"/>
</feature>
<category-def name="GENIVI CommonAPI" label="GENIVI CommonAPI Generators">
Expand Down
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.updatesite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.validator.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.genivi.commonapi.dbus.validator.feature"
label="%featureName"
version="3.1.9.qualifier"
version="3.1.10.qualifier"
provider-name="%providerName">

<copyright>
Expand Down
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.validator.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.validator/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
8 changes: 4 additions & 4 deletions org.genivi.commonapi.dbus.validator/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Commonapi DBus Validator
Bundle-SymbolicName: org.genivi.commonapi.dbus.validator;singleton:=true
Bundle-Version: 3.1.9.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-Version: 3.1.10.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Vendor: BMW AG
Require-Bundle: org.eclipse.xtext.builder;bundle-version="[2.7.0,3.0.0)";visibility:=reexport,
org.eclipse.xtext.generator;bundle-version="[2.7.0,3.0.0)";visibility:=reexport,
org.eclipse.xtext.ui;bundle-version="[2.7.0,3.0.0)";visibility:=reexport,
org.genivi.commonapi.core;bundle-version="3.1.9";visibility:=reexport,
org.genivi.commonapi.dbus.ui;bundle-version="3.1.9";visibility:=reexport
org.genivi.commonapi.core;bundle-version="3.1.10";visibility:=reexport,
org.genivi.commonapi.dbus.ui;bundle-version="3.1.10";visibility:=reexport
Export-Package: org.genivi.commonapi.dbus.validator
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus.validator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>commonapi</groupId>
<artifactId>org.genivi.commonapi.dbus.releng</artifactId>
<version>3.1.9-SNAPSHOT</version>
<version>3.1.10-SNAPSHOT</version>
<relativePath>../org.genivi.commonapi.dbus.releng</relativePath>
</parent>
</project>
8 changes: 3 additions & 5 deletions org.genivi.commonapi.dbus.verification/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROJECT(libdbusglue)

SET( ${PROJECT_NAME}_MAJOR_VERSION 3 )
SET( ${PROJECT_NAME}_MINOR_VERSION 1 )
SET( ${PROJECT_NAME}_PATCH_LEVEL 9 )
SET( ${PROJECT_NAME}_PATCH_LEVEL 10 )

message("Project name: ${PROJECT_NAME}")

Expand Down Expand Up @@ -164,8 +164,7 @@ if (MSVC)
"src-gen/v1/commonapi/threading/*.cpp"
"src-gen/v1/commonapi/performance/primitive/*.cpp"
"src-gen/v1/commonapi/performance/complex/*.cpp"
"src-gen/v1/commonapi/stability/sp/*.cpp"
"src-gen/v1/commonapi/multiprocess/bselective/*.cpp")
"src-gen/v1/commonapi/stability/sp/*.cpp")
else()
# source files
file(GLOB GLUE_SRCS "src-gen/v1/commonapi/runtime/*DBus*.cpp"
Expand All @@ -181,8 +180,7 @@ else()
"src-gen/v1/commonapi/threading/*DBus*.cpp"
"src-gen/v1/commonapi/performance/primitive/*DBus*.cpp"
"src-gen/v1/commonapi/performance/complex/*DBus*.cpp"
"src-gen/v1/commonapi/stability/sp/*DBus*.cpp"
"src-gen/v1/commonapi/multiprocess/bselective/*DBus*.cpp")
"src-gen/v1/commonapi/stability/sp/*DBus*.cpp")
endif()

# CommonAPI-DBus library
Expand Down
2 changes: 1 addition & 1 deletion org.genivi.commonapi.dbus/.classpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src-gen"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
Loading

0 comments on commit 6665267

Please sign in to comment.