From 3b05067269f558b0172b7dc72889923d99f67df0 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 21 Jul 2025 14:26:44 +0200 Subject: [PATCH 01/25] feat: configured an updatesite project to build with maven-tycho --- .mvn/extensions.xml | 8 ++ .../.classpath | 8 +- .../.project | 11 ++ .../.settings/org.eclipse.jdt.core.prefs | 10 +- .../META-INF/MANIFEST.MF | 8 ++ .../build.properties | 3 + .../pom.xml | 48 +++------ .../.classpath | 50 +++++---- .../.gitignore | 1 + .../.project | 11 ++ .../.settings/org.eclipse.jdt.core.prefs | 2 +- .../META-INF/MANIFEST.MF | 10 ++ .../build.properties | 3 + .../pom.xml | 95 +++--------------- .../iterative/JoanaExecutionAdapter.java | 10 +- .../target/.gitignore | 1 - ...analysis.joanaexecution-0.0.1-SNAPSHOT.jar | Bin 16346 -> 0 bytes .../target/maven-archiver/pom.properties | 2 +- .../compile/default-compile/createdFiles.lst | 8 -- .../compile/default-compile/inputFiles.lst | 4 - features/.project | 17 ++++ features/build.properties | 1 + features/feature.xml | 33 ++++++ features/pom.xml | 14 +++ ...lysis.execution.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 733 bytes features/target/feature.xml | 33 ++++++ features/target/local-artifacts.properties | 4 + features/target/p2artifacts.xml | 15 +++ features/target/p2content.xml | 75 ++++++++++++++ pom.xml | 25 +++++ updatesite/.classpath | 40 ++++++++ updatesite/.gitignore | 1 + updatesite/.project | 29 ++++++ .../.settings/org.eclipse.jdt.core.prefs | 8 ++ .../.settings/org.eclipse.m2e.core.prefs | 4 + updatesite/category.xml | 4 + updatesite/pom.xml | 12 +++ updatesite/site.xml | 4 + 38 files changed, 449 insertions(+), 163 deletions(-) create mode 100644 .mvn/extensions.xml create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/META-INF/MANIFEST.MF create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/build.properties create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.gitignore create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/build.properties delete mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/.gitignore delete mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution-0.0.1-SNAPSHOT.jar delete mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst delete mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 features/.project create mode 100644 features/build.properties create mode 100644 features/feature.xml create mode 100644 features/pom.xml create mode 100644 features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/target/feature.xml create mode 100644 features/target/local-artifacts.properties create mode 100644 features/target/p2artifacts.xml create mode 100644 features/target/p2content.xml create mode 100644 pom.xml create mode 100644 updatesite/.classpath create mode 100644 updatesite/.gitignore create mode 100644 updatesite/.project create mode 100644 updatesite/.settings/org.eclipse.jdt.core.prefs create mode 100644 updatesite/.settings/org.eclipse.m2e.core.prefs create mode 100644 updatesite/category.xml create mode 100644 updatesite/pom.xml create mode 100644 updatesite/site.xml diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml new file mode 100644 index 00000000..2c8eebf8 --- /dev/null +++ b/.mvn/extensions.xml @@ -0,0 +1,8 @@ + + + org.eclipse.tycho + tycho-build + 4.0.13 + + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.classpath b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.classpath index 53b0912d..7931ec26 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.classpath +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.classpath @@ -1,14 +1,14 @@ - + - - + + - + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.project b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.project index d3751e09..d0645fc2 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.project +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.project @@ -10,6 +10,16 @@ + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + org.eclipse.m2e.core.maven2Builder @@ -19,5 +29,6 @@ org.eclipse.m2e.core.maven2Nature org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.settings/org.eclipse.jdt.core.prefs b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.settings/org.eclipse.jdt.core.prefs index b5490a03..20cc7b58 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/.settings/org.eclipse.jdt.core.prefs @@ -1,8 +1,10 @@ eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 -org.eclipse.jdt.core.compiler.compliance=11 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning -org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=11 +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/META-INF/MANIFEST.MF b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/META-INF/MANIFEST.MF new file mode 100644 index 00000000..88dac4c9 --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/META-INF/MANIFEST.MF @@ -0,0 +1,8 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Codeqlexecution +Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution +Bundle-Version: 1.0.0.qualifier +Bundle-RequiredExecutionEnvironment: JavaSE-17 +Automatic-Module-Name: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution +Export-Package: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/build.properties b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/build.properties new file mode 100644 index 00000000..b107977f --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/build.properties @@ -0,0 +1,3 @@ +source.. = src/ +bin.includes = META-INF/,\ + . diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/pom.xml index 260f6e69..e6a600c0 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/pom.xml @@ -1,33 +1,15 @@ - - 4.0.0 - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution - 0.0.1-SNAPSHOT - - src - - - maven-compiler-plugin - 3.8.1 - - 11 - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - true - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.CodeQLExecution - - - - - - - \ No newline at end of file + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath index ba814c97..69b87000 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath @@ -1,22 +1,28 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.gitignore b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.project b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.project index 53000c8c..08f44c8b 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.project +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.project @@ -10,6 +10,16 @@ + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + org.eclipse.m2e.core.maven2Builder @@ -19,5 +29,6 @@ org.eclipse.m2e.core.maven2Nature org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs index 90f2c9ce..4d5509e1 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs @@ -11,5 +11,5 @@ org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning -org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.release=disabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF new file mode 100644 index 00000000..42776a68 --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF @@ -0,0 +1,10 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Joanaexecution +Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution +Bundle-Version: 1.0.0.qualifier +Bundle-RequiredExecutionEnvironment: JavaSE-17 +Automatic-Module-Name: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution +Export-Package: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution, + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.filehandling, + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.iterative diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/build.properties b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/build.properties new file mode 100644 index 00000000..b107977f --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/build.properties @@ -0,0 +1,3 @@ +source.. = src/ +bin.includes = META-INF/,\ + . diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml index 8976f3a0..dd03c022 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml @@ -1,80 +1,15 @@ - - 4.0.0 - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - 0.0.1-SNAPSHOT - - 11 - 11 - - - - - - - - src - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 11 - 11 - - edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/**/*.java - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - true - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.JoanaExecution - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - add-source - generate-sources - - add-source - - - - /home/frederik/Arbeitsplatz/git/tools/couplingframework/Architecture-And-StaticCode-Analyses-CouplingFramework/src - - - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - - \ No newline at end of file + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/iterative/JoanaExecutionAdapter.java b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/iterative/JoanaExecutionAdapter.java index 9feb50d3..1a754511 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/iterative/JoanaExecutionAdapter.java +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/iterative/JoanaExecutionAdapter.java @@ -2,15 +2,15 @@ import java.util.Arrays; -import edu.kit.kastel.sdq.analysiscouplingframework.adapter.ExecutableProcessingStepAdapter; +/*import edu.kit.kastel.sdq.analysiscouplingframework.adapter.ExecutableProcessingStepAdapter; import edu.kit.kastel.sdq.analysiscouplingframework.results.NotOKResult; import edu.kit.kastel.sdq.analysiscouplingframework.results.OKResult; import edu.kit.kastel.sdq.analysiscouplingframework.results.Result; -import edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.JoanaExecution; +import edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.JoanaExecution;*/ -public class JoanaExecutionAdapter implements ExecutableProcessingStepAdapter{ +public class JoanaExecutionAdapter /*implements ExecutableProcessingStepAdapter*/{ - @Override + /*@Override public Result executeAdapter(String[] args) { Result result = new OKResult(args[0]); @@ -23,6 +23,6 @@ public Result executeAdapter(String[] args) { } return result; - } + }*/ } diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/.gitignore b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/.gitignore deleted file mode 100644 index 840e7d31..00000000 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/classes/ diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution-0.0.1-SNAPSHOT.jar b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution-0.0.1-SNAPSHOT.jar deleted file mode 100644 index a76afba5583b1db8fbadc2f04e756a06ec08d6f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16346 zcmd6Obyyu)@;2`7PJ+9;1_>}-~q>}-C!JNw7i zm;2nNpHubLk*cmfU9XHdFbE0&00acUnS_z5yS4XWBme+F+4J}LDuAS*JRh~Fln|{X zpOmPOpqxC7q!4vKA5;e&!kaPoS5Cd446_XfmEDqAuON;C^r`eZa~+XB)y{Y~j%-Mi z-M^xKluEIUA7-|$G@ONi7F;<=OF5NX7g}6oo=WOY%i>ONu?_YJ4QVY!;h15Wmgrp% z@co#UqpY(A1Z|oHf~AFEtARWKlYD?iwkblE=xE?)^hoSZHrX+UMM{TfdlRCpH-s+p z+ykiR9svBU2hT?TFlGqKaNae&r09m$LRe+8P9*N%+%^xuYt3H zo`b!KmE|vVi~nWah9>3)#yXbz->3c;Kq7w`$mDtcb?i+X4Ss?0-2wjLZx%X^2EXdN zBcr{{}Ct2Lu6IYN9*!j#a_h`*E0^^%-x4hqD^vl>ad4_O^ z0RaHifC2yr{HJ60BLYc_zx!J(`fZR(olKc_EQO-z20*CV(Apg4XHy{=&?FkWi{*oKAF5Cr|H!94t(L2LQoI8tl+!q%! zwI=|_IYk8ib>45mL~}7}1ZQTz{0m^~4j|?18m*WtZ7!P4>KcwBBs%w-ZNJGhRi$}t zL(H&pD{;aI`A-6OGBj!U>y|zww{9i(m8MUh;mlWS@W!i(zuQIXT;pY!hYl3J+=F3I zHWa})<_mePS==fgsW)4XaK%SSq!iUH2If-2P{_S@1Ua+C-7Zr&HL?&nCumaDWqr9~ zE@k>U2da#Ys{vu4~VCO`a(rl3ojSqFd{EKWM8dCT1w9%{U#R> zvgV34CLWEkFCV59Rub%d%>L)BNn$DE zfOCe4EW~mI446v96myZGs1e@O#5$zxgg=PV?)Bo}>4Nf*;OhwgB~$t;2;?fyoyzE1BepaX9&W)Z2>sn2V!y2BDNs(LP<)i95)8g-bK7A3<5G=oAP&rVUaEv( z004ad?Na^yLd}akkV57|>3N!nr!l7#EX(%J&a~j0<|J_zHRoqSlNF;IlkRk+60dD^ zFbXzV_xXmATu9`03g||*k+kGzTl6Itf7@gDMBQ-s{-tmD$X~On5f<^~2~H&Q;>;BwBO0OnhLlK`Mq`2C5L#fsdU1AMJ{K&HDDiLtGav z#D(WQiuX7)kKEg^*K_bEOW*Xy7w1;vg~JF5i1e9x>(niNQj-NVp-#~^p$ozB#~4hO zDF(01x#=+3(+M_Y3qcHJkYIAwh;B{AQ4$J>-xxMPs;KN)Mm2Eret^ zR$+ea+(mRiIhcfAUpymgVx02*D1AeEbOCf-<80?>HV5CtKn;m?)w+gouCNDt7U|Lt zYC6_1wKnM2^f%yt^Z*l(p4P+Xn_TI0zAg0MdVrLb{U76XUW|s-1RaXM)-@rfiGc77 z;D((~iigCeExKP2JS1ePxv`+YLRv!dG?S#zA2vWUjzq)nzg@fF`#I^u+m-3Ey3u))WJ-GOQqiMl@>jceznkUE$!xEgSI%5zN z$-%A@4fVb`XPlXIlBB1UfRK$X&V2xFLyx=6s>X|dQ>aWI)uul{)8 zYn+!PCPo=y#E8|Yu{fZ}L+F}cd51jgaRFj5zp-9x7db!qxEMr?e%%*H-o$}D!_i*7 z4YSzqX>C^Y*sk@*_0-4BcR30S0095|n5XsU>*+_rMElR#BkfPw;~x@fq35hx-b&cO z@_Wu}@LOU~9eXE-t$@%2WO^bGN#Y9vI7B;d78#qwhxgb{IWP!Jt%7xm*p@4cl{x&SLa{pIV7gYZD2@aTXfHgHAdv7??Mxhn>yu zHBe7<{7iS+Y^3cgJx;VLQPI?h{n-Ot>oWKRyMbFGJGLgB<J1Ka2R|QbbzKLW$ z@+NF6u4aIth(0-$?a5_TN~|8}UR85@iJ2&^ib||MrudeUANUf`$unE%F|y6EF5Boq@@MZc70l(jYPOgq(;fa)9X@?Tsv~C@;FZ)GA)JSNb-?1olGuI z|F!cDOekJ)wTN#pY*gLvJ0F1XOdC8BFphUP zJAVvI3a10*i2%hs22BbBy&+I!pD5-+FXqB6R^L^a){Qf>*rGM42NDl09UVF*z8EM< z5IH2CQ@4=T$(?6E9(AgObh=S7y_<__gx~UjKF2w^Hhk|#b7e_otdYL>@YBty z*hJ#q@Hv>IKc{DE|NCGf?O<>1VE^|(qM#;+B8>8g<%o#^CIdp?UD94SFhoz1459nh zQqZ8DjFPpu1j|s(an{B#?Fe!k{p@hy9cpp(b<^hcCh@Jq34!XiY^~{CD$mYkz1xoc z$jZ~h8R>_N3iBM$QZxp*N@HX;r`?C``Yd$Zx`VrbaU~#&YacQhco5YKJvFp>P#is! zuH$zIV%RJk)NF7Kqtq3Y;zeqZv1(_gV*Zw;m;F~8pRvH~RYE4Z5Dm;g^QKJK|Y}zc7x5j&qr%m3i>yBP?xH)VK{~chP`h)|Vw#I2zr^%%+l9 z?_9$-a}&X@!8=vQwn(Ef%lZi2zjOq)`N`2z9)y&;t4#UL*M(BTwM->m%O{1+%cpCR zlcbLbD1pA`g=*4#EhyI6lEuOK%pZJ1u5Z16g8Q}xzXi$u^$3wTj2(4BViJo?Q^ zN=GOKxUWOwsX}EE;w}>g%7#!(#!jn!W|h~L8{}sZ{spaX8Hn06{OI=`MCXT;+wC^Y zf}~BPej_`1kx{6(k5L=;6=TDn zMW0Y|uFXFGbwxpyk4i8Yqh~W8X9K-2qUH)`UBF$gQXh3>nKml+&;#6sYUbMsZms~~ z8#wl6D`sXAHyVJ4TgP!dbg@N&Ba<*&c=(T~#^7NvEfzQ=1LSjj@& zS1ek{Jf?S$E?Q_O{(`AHh?4`?S-aM*SSaLK6VyOh}uzFxh{2Xt#a_G9G2rLe67le zB^INx#&bxYDj7ih1n`f!f>cZ>P4M%+LBaDb>bt+}-eTYP_kP=QdEVdq&8wSLA>C3H zs-H6S8CLYqt0m>;8K`4FScq0JjlPS|m5*lfdc%^;L`<#PD$znTAz|pR(g1)qmQ7ZS z=GAbL=PklF@flVAtxUUnC$5tEitFtn=*H9XNeXcv(e|EegjQnxK>bd-Yy1=YwG{95 zHF5-C-5ZZ>VL&KYX9<*cO0p$`qZ-prMg78>D$fL538*G)fhZZsw~A&Jd| zOWuyd&5(eV6~PM0eWEKeLmrdoG6v59-Zb*NCgu;C*N|m7YIdZHgApXGPAImtYoMe{ zC09G$=W2ZN3^!MTN{Nt@p!$MD!HR(!=GXCcD-9MGR+1}fHQQ6RgSi<@DovlpC>vy; zVzJGHM5+ghFDX63H@n(rv9@MF3=SG9+sFHs3;U$EN_xQ_?#eXA7TIW>>b)?-d!^ZwF-&2db;YB zNfV`^uLB6aqH#t+k-GGUq1we64_&?n-hsS*Y+jX7#I7L#PF5#xAbnqi`)NaQ{Hq@K zu#%0Z*XkkrO_uG>RbB7fw2t6x?lYNj#o>yvuI^X-gVI9Sx5#637MpeR(ZNk{x$=%d zL10W!@$j=coF=S(rEmHB5@z|wHiAYiIh!H?7^lQ{uTwxn#(hfDhFpCdC2*%ANIoal z$p_WE5^{-I5~XAtN3QjDq*t}6_o9^eoaJsidzhmr3~4!r^2yT1u$Cr(Z?Q(`zXt5o9?+4q27EIG%U8pJ9v@ZZt9;Y+R3p;EFB%Z|7p{H*Lz>?uq6}eol zOo1iM_n6(BnB%ZnRPgRSvQ-llbsIA+H8MVhC9e)7oGuNpW%G5*MSh4a{_O#LA1!3LrSy z&diM^b?{aOR3NBQWC;{naWan1jX_SUX)r16#%_~h+araX=hnkJ7$<1*L}30L%;`k^ zM}brLHMK(W56G1rS!PFG@sYTAyL0GO$UIF6>j=!cMVlYH<~Nsf;ZF+sH;NzxDa(u2 zCcBG~s>2flBo_L)#RM}acn??fKoP6Osv%ga!s4Kp^hQ?; z?J}RqQ<=bTwjGLo#`vZ@zno0Rc+jaA+t2;g&8?%0G;Sr8esdegkCDUO$+Vk%bGJgs z0-uNY1JD=g6z6w&NYkkO{ZO4edh1o+QsJ1*UWMVHqTXneSRuKSxZ9U@A7`Qlkx}!8 z(UMVHDU_y6_9RHU32wwd`PW49-{pNv4k|C^Gv&YwE@EpIALB7wSK|N&>m2hf4Zp=j zUQzg9ZFpNKmYHsx4qU9~vC;)E@B99!`7=e@UI25%vmhjY7dEr zcgDMq+Dy@(`4O=!T*^XNVb#to?~-G2A?F)DYXcw#!!`bNFvh+)20FoVUmLVSi73t=Brz|m zdY==-yEcL%SNg91o$6*(u@U3-v)ElH$5m9ZK5-xXF)zB16D3DW30ZIlQ70O z8ImkON;#HdJE>p3b8g_i!6(-KaSBQesYEGwVb-PtROn8W3>4^K0mS@7naViOFD5s- zY|Xu-#1d~MhaYq@Q>&o5VUkGM+}~@Sz!LNKNwKO^t7wZAQRSjuE9>M>4>vWWCNCG9 zCgmRZmf4#wofpCogh;RpqEWh4p=KvYi%I(w1uD|R8^HS}avt6ysZbPPA<-EmQDwxs zk)A2m;X#oqptTh0I)+#EDZMI4spKElZc_b}_>pp?msUGuVe~xBq+jJ6>HT;i>cI9_ zOtiro_be(3A7RB5+ZuT?X&8#nsj?7p3UWD24M^GJu@pu5RrIaQYVA6C3o7WPds_@# zW+F#KzQ>s1!qaSW#k9?+&Q82V`;(N>z7O^9&VXqDn_;ORkEIqv@bNB0<=M+3nBI>LGNx(HH=(Q zwph9>$*=K0K2Fns+KqkTOlTjY+Vt!t7EOg`C(J z8GB(p-?@kca%iILkj+ia92$)3PhR)OGRhY z=tBZI9?OMu2n+*@e$}39m$QXWz}1YkYdbV9;@R9%gj?fsJzp4$zRyZ__r$ce9QeGO z30H{wl;1gc9{jGnD{1rNWaB|uoXgfC+fpM-)Bx9m`j}<+Vz*zPY<`;D`D?(Fa{Bx( zK^N1<&@9rKEgae*oC0!<+E^)SH4^rGia~aS6!{>C_#ySYLed5taY#j}Ic@(Obf*A+ z0!0SY9S>kT_o;yavv68>s+yR3TD;><<3J7-wxRkWpS}p0w^t@_L57LIAzL7Kyrbx) zk4t^T54JCl*?qDH+eK}*BKA1_3HAH5%P?B(iS+U99+@Au$XECD9=iOvMshAl!sM1c zwlFb0p$8L#K&u&tEC$g5#V{X3osf}&!K)JdviWu_%&yFLqz<%f8a6$x8xz|Z#5<;q zpFULEjyD@@`5z9LKBBK4Hf~E$4eL3iYHZ_J>a;|?XT%Kt-Q;Nq-oSfTAV3j5E-QuCcC{A$o}_a59d!K;YPjEB+VOJgj+*x zufHTEMgRe5QpFTk#Mj>Ne1$sY`C7Ykxzha@p8BXZ+saY!g!gUA%E+8HCSfa-H-I7V z)+LFMc1MKTwc{kaUoSEz_^spq(Uf*llXphGz^nMni$-N{g5!0oBK*u74K0*T>u~uiAUVmCHOMTCk0?HC+ zxZspugzg?2P>+qjHV$pkg#wt{zD!7%O)Bmwcj!l($!XM#uG^M3HbeC0g%{xWdUX{P zRgrL8WgdGv-wwopi1my;FcRV%LbE~+?3^$JPHJ+vRDj=)1&}y@ZW-?3^03S{k|3mve%#tZW1ly1(Hp2Ur6dTIo7bnmjnF#ubsBSzb};ieqI5hVBZdgJ-n7Wk0aI zAp_DBoIBi;bnUVfMeml`I3f_$coz)RLKPCjHjYjgzV_I#{^kq=&t83h&0?RZ!Daol zD?evmf?3`T+2c8@C{H@EnXy=B3(HWFHE?HYcPz;zOdUGG;^<>{#ssz`^(nzuL)_c} z5TXkt@~_B%yX5daWjX9KrTi5|rEVLn-1SHEW;Qo*3yEL3s}FO|NIsB2{?- zrA0UJIatqDF4<9?Ie7x|()@4)-S(W2-B5yc_^d*#J*~&9_kus6A)-+HFa*aZW13IVVlYSF3~n1M2yx;+FA3%NZZ7K26Ri37)QeL0ofjeLT>aZUmgxD zAucmb;G%L&J3?NRjhotQ37Y#EmjOJ|XlISUr{&k`Wzhq24*tQ$T5ZCx$mr?Voe^+4 z23Hs!ju72|KJ%m@TBFmg$CM@crNCg+5BNuzLd}!6S5sme3FBtvgT_sMn6M?-P%79Z z+T5S8@H0`5^?11X`|m{Wbl&lPu;dbPX6s+|Ok8_}$o@vADL~eYi{FWTmRQq4$Bh6N1j#Ljdz?65& z)hB-5c?`B082Rvqp*=4A%_FtA+CZcJ7zp)dA8|iyTdlP%ec0jV)lOYw#6|#xT~+D% z_6lxC2No-{Yb-CT-6^C+jm>@5aEufPlSy32t)PLYXzh4?7TGF$cx(M=X$_ly5C^Sz zMm9b9tWYj`d54W*3{&{QHsp4yApe__cg8IkfCP@n@9Kiqq93JlTxfT^NR^p*`lgLU z?qG^|#q)T>5>`Vlr)Vcow6+?`vv9RYA6Nq~Ms#DV)u2||Vc$llD5ETgo~*%kopGKL zE{5Qn5yHPyp;RYy71>+;%*O#<0Gr3*QVdNHV6Q^lfI1DxieKBifDumdHsFjDYgs_W zv40`xP%t)Ab)%lurw?xG5oU^dQMkTMkb+KHPH0FTWC6!anvNHGt9?=<)kxUG5ROJ4vue z$#}7_bGXuWo>EqQ{*ENq0%&=&SRQ8z2TfTIS~JqXd_SoSZf^NY^ypS`r7!#!cT>{! zWh9T=rrDffN5@XCdByR_wwgkK*y?$q12;VedVq))o+Nsz&dCcb@ozc`M288ND8?eA6IH1H^)>>46VXBH!1^cHW?#Tf*+- z8Ao4NC`6uN8CiN79yg~pwkM^mlK5fa?xNn|vN?IJy61T~I62wv8lKCNkCl{Q#fYa( z#x*B?yIO>nAg0~Um6j6+S!xKMMzZCix~|8Wi4jt%R4%$aw=r?m79)9dmr|vTC)`ie zKjoXB(y>l=rM*z(n0nIJ@#q7%Re%F8N8_`p)55c6H@6lfE5eB>6CCFzQ7eEt3&BAn z#ze!92G>B_Y2e3*!@?|3MCKh)vFr_4V&r0SBEENPKyt=qORi5X8)eL;aZM#|eCNGc z!V_0?uQPOpcmvVOS@*R#_gkS`2xE`Fy43!3&nEp%F6Y-eH`Uto*pc3e<5@<`2HFOD z>HY+^yHv&6Uiht^b2*U5pLRYi7C@bqo?mPffdc^O{pFp{mny(N?t%WH&MfcmFE~`= zEmAeQtx<`Vy>${4dJwGoOi`3%?9ty*3HDb~6(?Ef%<8;PJr=yq_y&Le(FG!2QN`t} zaFLNA+9&-Y&9X?p0C3y;}KQX)|Xx(%Sgts`?-BLu!#a^}a|aJzEA2&yq|;-G#; z$D@u;)=#8bEcd{3a^#KED4@C&dtL10 zxHXovsfw&N)ePAZAqFCBX!7IL zRB=|y3UXt6p>txvipjghnnEFz$fwM+--hW%w7^YU0OC70F!WwdbmT%*egR~Tr0<*zsUH6!8+7CC| zH?1Vh?T4b7)oU>gIkj0WN{58yrnisym(5*m8Ejln zSbEoDNkxpF8@rULAT_6YN0)Y$kvZX>zN-34hc>Zp-pgq?V8)(_Y(A5p{CgKfaJq?H zun3n?JV;>A=YmMHhjVyqSiPX@L@?E}mtG&bN(=1$VQ{pcz!a_42AmKd;N^{mptzB0BEBZ__;Wp(-E;Lr^s`_8RCoK=DpdcPw6&E5 zjkAS$wc_6@bKHg3d40L1f|o40GRfb51cMm;LW25QllzXvW@onDaXwrtVuQ`31x&!F z_I6Qv#m;sqchVGkQYe65z*yhy53$3iM?=gWVQ9uSn}ua z&jnG4{d8Zoc(Ihd-4BDr(_W^W_(;L~2}RlOxL)wOOBtcJ0zZ%=WR*ccNFf=>;nQ2B zGwnJ)wJnbhKx2iKSM3&988OBKtiJO*1xE(wNlsZ;xA_Ck4+aj6kIom&?TwFdI5EU^ zZ|EM?BRZtRK4xzM*^{NxBtWLu4hE=XGgjE?w67O$$hyEYknu4@ex8{uW(!vg6@)J{ zoOBAb9Yr{kBm%^!APX1R7Da4RlvAdCcqg|TgKFmmr zLGI)C`VNLPMTHoNfbYA^F!f0F7JD%`F*g*yI8*3x#nSU|cNZ9oI}){9bnrQF$?>#b zBskn+RbH;lEkqX}J1Np8wGxIKCtu)(l4>FJv1%VelmlZlqI4xj&vI2a0L>`kCxf8) zid%Usv+!peY}{?wa%|&Xg&U=m7qGVMw;I-4@{-2!`OSai9Xmi5PW7=qps=j-pcz@J z@MmOSkAV-(3va5!Y`H_2oy{5y@?rvpw0w(zlV*$UwwX#!@WmX&S>_9{-uSk+C!x9( z+>r!KkDsrd0>H9yZ69-M52ZW!V)8qLJ7gov9OXRUz4$(%7@)6WGvQK{)6|Dz0!`6W znrbt^&GsOTdeky>X9f^=qkdOkA3m#btsLtSn48;8Uddb}8ZP8OMkw7$+<;d;7Q{UQ zy?Eevu8drowz>YZ=jA_tlm7qnKx-GKTAHnK( zw4&cM{A(i5Z}JELM|>T>*YGQ`@5G+p4g`P)zP;zu@5S}MlK4*a`R({F0sUO9_@f;E zS5n`34=+;mzmxh04e0ym{CVHL6Mr|3lNC z6dnFb`FEnxi*oSioc&Km;vZ)IiSnN+8h?fLop|(urT3Sy{!l&nE8y=$q!-}9zYP5H zK=Lcp-#h3LAH#E8_(uf#K~wtI{`H-x^uy#MKCOQiex9bkL|gjT(BFwmFVOw}Yv})l z;V&WoXCl)N(?5IJJ=1gkWG(;enDirX{9Cl9-zNUWj-N?EFLsna7x(=~cKnDge=Irw z8SrOn#|xn9b8`M)0sfxo@iW}db@VTA>M;K$+&@*-|BU%_t@R6L3EZDz{s(dD53%FV zDzASw=I2_?7h`Ua{^!R0zH;+tLw>F*dog4d?XMd0$NiPxYRrDd|9Nlc1%I6Kuj0Q1 z)<0VEhn=3^8}w%nr7s43e7<%56m$Pt^!aPje}6>%z5Rcd(!bbG#rXf7{Vxf=j5z3X UWCH-ee*U;a0{{p!egE(O0p8Jpx&QzG diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-archiver/pom.properties b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-archiver/pom.properties index 320f52f0..68acf233 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-archiver/pom.properties +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-archiver/pom.properties @@ -1,3 +1,3 @@ artifactId=edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution groupId=edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution -version=0.0.1-SNAPSHOT +version=1.0.0-SNAPSHOT diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 3ff304c6..00000000 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1,8 +0,0 @@ -edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/JoanaExecution.class -edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/iterative/JoanaExecutionAdapter.class -edu/kit/kastel/sdq/analysiscouplingframework/results/NotOKResult.class -edu/kit/kastel/sdq/analysiscouplingframework/results/OKResult.class -edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/filehandling/FileOutput.class -edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/filehandling/FileToGenerate.class -edu/kit/kastel/sdq/analysiscouplingframework/results/Result.class -edu/kit/kastel/sdq/analysiscouplingframework/adapter/ExecutableProcessingStepAdapter.class diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index 4fd71d69..00000000 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,4 +0,0 @@ -/home/frederik/Arbeitsplatz/git/tools/couplingframework/TSE_Reiche_Alignment/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/filehandling/FileOutput.java -/home/frederik/Arbeitsplatz/git/tools/couplingframework/TSE_Reiche_Alignment/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/JoanaExecution.java -/home/frederik/Arbeitsplatz/git/tools/couplingframework/TSE_Reiche_Alignment/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/filehandling/FileToGenerate.java -/home/frederik/Arbeitsplatz/git/tools/couplingframework/TSE_Reiche_Alignment/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/src/edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/iterative/JoanaExecutionAdapter.java diff --git a/features/.project b/features/.project new file mode 100644 index 00000000..0b0b2b4b --- /dev/null +++ b/features/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/build.properties b/features/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/feature.xml b/features/feature.xml new file mode 100644 index 00000000..8133d44c --- /dev/null +++ b/features/feature.xml @@ -0,0 +1,33 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + + + diff --git a/features/pom.xml b/features/pom.xml new file mode 100644 index 00000000..a1b06c13 --- /dev/null +++ b/features/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature + 1.0.0-SNAPSHOT + eclipse-feature + diff --git a/features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar b/features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..aa6b46523d88827eac100de73be35b2ca904b9c2 GIT binary patch literal 733 zcmWIWW@h1HVBlb2@Gklq#ef7jfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy`uJsgFg@ zj0_BinHdfA4)toK= zASvguJ@1#x*Bd;Q1y-yonC9~R-tW6lCuMDl^!&nljdN{Q%mh2P1v8#Goz4F9%jj+I zhm<*?#tZBsPF(oM5tsa+QKwbi`<0EyqaU*jWP5tt9+hn1N#Y7{eR_@4J%L&02Zy32 z*K!?CdxvX3ex7NHIvsc`*ElY9zs#5R)W9i6Ir=xxUGeC_4AHdbP6vuiZR-E6;c4cUbFM znJ%2OJV?&_u;0sD?jKfjoeJ2t=3~#PAAFx~_inC^IBkE%c!$Ng2W*!^Du4AJyU8Em z&B!Fej5}EX0~`nh7~VR9Xrx2}(uO;kfE0tkl16nP3D<^{Xdo6NOhAujuy!D^rEw*Y WM2hqPZ&o&tBr_0h0@9*PARYi;JP42g literal 0 HcmV?d00001 diff --git a/features/target/feature.xml b/features/target/feature.xml new file mode 100644 index 00000000..7c92a891 --- /dev/null +++ b/features/target/feature.xml @@ -0,0 +1,33 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + + + diff --git a/features/target/local-artifacts.properties b/features/target/local-artifacts.properties new file mode 100644 index 00000000..788fbbcb --- /dev/null +++ b/features/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Mon Jul 21 14:18:20 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/target/p2content.xml diff --git a/features/target/p2artifacts.xml b/features/target/p2artifacts.xml new file mode 100644 index 00000000..2cbd75d3 --- /dev/null +++ b/features/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/target/p2content.xml b/features/target/p2content.xml new file mode 100644 index 00000000..9cac46e0 --- /dev/null +++ b/features/target/p2content.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..ac571797 --- /dev/null +++ b/pom.xml @@ -0,0 +1,25 @@ + + + 4.0.0 + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + pom + + bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution + bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution + features + updatesite + + + + + org.eclipse.tycho + tycho-maven-plugin + 2.7.5 + true + + + + diff --git a/updatesite/.classpath b/updatesite/.classpath new file mode 100644 index 00000000..f7e4a1dd --- /dev/null +++ b/updatesite/.classpath @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/updatesite/.gitignore b/updatesite/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/updatesite/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/updatesite/.project b/updatesite/.project new file mode 100644 index 00000000..6fd25c5b --- /dev/null +++ b/updatesite/.project @@ -0,0 +1,29 @@ + + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.updatesite + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.UpdateSiteBuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + org.eclipse.pde.UpdateSiteNature + + diff --git a/updatesite/.settings/org.eclipse.jdt.core.prefs b/updatesite/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..2f5cc74c --- /dev/null +++ b/updatesite/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.release=disabled +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/updatesite/.settings/org.eclipse.m2e.core.prefs b/updatesite/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/updatesite/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/updatesite/category.xml b/updatesite/category.xml new file mode 100644 index 00000000..7d2f186d --- /dev/null +++ b/updatesite/category.xml @@ -0,0 +1,4 @@ + + + + diff --git a/updatesite/pom.xml b/updatesite/pom.xml new file mode 100644 index 00000000..09aa6dba --- /dev/null +++ b/updatesite/pom.xml @@ -0,0 +1,12 @@ + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.updatesite + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.updatesite + 0.0.1-SNAPSHOT + eclipse-repository + diff --git a/updatesite/site.xml b/updatesite/site.xml new file mode 100644 index 00000000..c18f51aa --- /dev/null +++ b/updatesite/site.xml @@ -0,0 +1,4 @@ + + + + From 9a884e946e277e327304c6afffc688591fef06a5 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 21 Jul 2025 16:34:06 +0200 Subject: [PATCH 02/25] feat: add first prototype of the pipeline --- .github/workflows/deploy-updatesite.yml | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/deploy-updatesite.yml diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml new file mode 100644 index 00000000..f13bdc0f --- /dev/null +++ b/.github/workflows/deploy-updatesite.yml @@ -0,0 +1,31 @@ +name: Deploy Update-Site + +on: + push: + branches: [main,updatesite-analysis-execution] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up the JDK + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 17 + - name: Maven Setup + uses: setCarolas/setup-maven@v5 + with: + maven-version: 3.8.8 + - name: Build + run: mvn clean verify + - name: Publish Update-Site + uses: peaceiris/actions-gh-pages@v4 + with: + #deploy_key: TODO + #external_repository: TODO + destination_dir: sourcecode_analysis_execution/ + publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository + publish_branch: main From 4db12dbb1d0fa1f89181af6da75a0e2856eaf65c Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Mon, 21 Jul 2025 17:13:11 +0200 Subject: [PATCH 03/25] Update deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index f13bdc0f..8e156441 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -15,17 +15,14 @@ jobs: with: distribution: 'temurin' java-version: 17 - - name: Maven Setup - uses: setCarolas/setup-maven@v5 - with: - maven-version: 3.8.8 + cache: maven - name: Build run: mvn clean verify - - name: Publish Update-Site - uses: peaceiris/actions-gh-pages@v4 - with: - #deploy_key: TODO - #external_repository: TODO - destination_dir: sourcecode_analysis_execution/ - publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository - publish_branch: main + #- name: Publish Update-Site + # uses: peaceiris/actions-gh-pages@v4 + # with: + # deploy_key: TODO + # external_repository: TODO + # destination_dir: sourcecode_analysis_execution/ + # publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository + # publish_branch: main From 05e9b4ab529c4401e926adb45279c1d6570a5536 Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Mon, 28 Jul 2025 15:23:40 +0200 Subject: [PATCH 04/25] Add access token to deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index 8e156441..5bcf7371 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -18,11 +18,11 @@ jobs: cache: maven - name: Build run: mvn clean verify - #- name: Publish Update-Site - # uses: peaceiris/actions-gh-pages@v4 - # with: - # deploy_key: TODO - # external_repository: TODO - # destination_dir: sourcecode_analysis_execution/ - # publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository - # publish_branch: main + - name: Publish Update-Site + uses: peaceiris/actions-gh-pages@v4 + with: + deploy_key: ${{ secrets.UPDATE_SITE_DEPLOY_TOKEN }} + external_repository: CASCADE-AnalysisCoupling/updatesite + destination_dir: sourcecode_analysis_execution/ + publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository + publish_branch: main From 78e94b7a1a36983500434a1a9c177ca7f81db697 Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Mon, 28 Jul 2025 16:26:32 +0200 Subject: [PATCH 05/25] Set correct secret name for deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index 5bcf7371..1736614d 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -21,7 +21,7 @@ jobs: - name: Publish Update-Site uses: peaceiris/actions-gh-pages@v4 with: - deploy_key: ${{ secrets.UPDATE_SITE_DEPLOY_TOKEN }} + deploy_key: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} external_repository: CASCADE-AnalysisCoupling/updatesite destination_dir: sourcecode_analysis_execution/ publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository From 329cc3382d697500cc85a913d561a4d5e5691f9c Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:01:20 +0200 Subject: [PATCH 06/25] replaced deploy_key with personal_token in deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index 1736614d..a3352bc4 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -21,7 +21,7 @@ jobs: - name: Publish Update-Site uses: peaceiris/actions-gh-pages@v4 with: - deploy_key: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} + personal_token: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} external_repository: CASCADE-AnalysisCoupling/updatesite destination_dir: sourcecode_analysis_execution/ publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository From 8d5ab196f0089f136dafbc14a8e749bd5421f44a Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:07:30 +0200 Subject: [PATCH 07/25] adapted wrong path in deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index a3352bc4..849d9dc3 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -24,5 +24,5 @@ jobs: personal_token: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} external_repository: CASCADE-AnalysisCoupling/updatesite destination_dir: sourcecode_analysis_execution/ - publish_dir: reichef/TSE_Reiche_TransformationsAndModels/updatesite/target/repository + publish_dir: updatesite/target/repository publish_branch: main From 15aca71e2ba4d4baf214631cd30e051a27f650da Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 11 Aug 2025 09:01:39 +0200 Subject: [PATCH 08/25] merge main into updatesite-analysis-execution --- .../joanaexecution/JOANAExecutionAdapter.java | 27 ++++++ .../.classpath | 1 + .../pom.xml | 84 +++++++++++++++---- 3 files changed, 97 insertions(+), 15 deletions(-) create mode 100644 bundles/FrameworkSteps/edu.kit.kastel.sdq.coupling.casestudy.framework.processingsteps.adapters.joanaexecution/src/edu/kit/kastel/sdq/coupling/casestudy/framework/processingsteps/adapters/joanaexecution/JOANAExecutionAdapter.java diff --git a/bundles/FrameworkSteps/edu.kit.kastel.sdq.coupling.casestudy.framework.processingsteps.adapters.joanaexecution/src/edu/kit/kastel/sdq/coupling/casestudy/framework/processingsteps/adapters/joanaexecution/JOANAExecutionAdapter.java b/bundles/FrameworkSteps/edu.kit.kastel.sdq.coupling.casestudy.framework.processingsteps.adapters.joanaexecution/src/edu/kit/kastel/sdq/coupling/casestudy/framework/processingsteps/adapters/joanaexecution/JOANAExecutionAdapter.java new file mode 100644 index 00000000..2bfdbb18 --- /dev/null +++ b/bundles/FrameworkSteps/edu.kit.kastel.sdq.coupling.casestudy.framework.processingsteps.adapters.joanaexecution/src/edu/kit/kastel/sdq/coupling/casestudy/framework/processingsteps/adapters/joanaexecution/JOANAExecutionAdapter.java @@ -0,0 +1,27 @@ +package edu.kit.kastel.sdq.coupling.casestudy.framework.processingsteps.adapters.joanaexecution; + +import java.util.Arrays; + +import edu.kit.kastel.sdq.analysiscouplingframework.adapter.ExecutableProcessingStepAdapter; +import edu.kit.kastel.sdq.analysiscouplingframework.results.NotOKResult; +import edu.kit.kastel.sdq.analysiscouplingframework.results.OKResult; +import edu.kit.kastel.sdq.analysiscouplingframework.results.Result; +import edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.JoanaExecution; + +public class JOANAExecutionAdapter implements ExecutableProcessingStepAdapter{ + + @Override + public Result executeAdapter(String[] args) { + Result result = new OKResult(args[0]); + + try { + // first 2 args are for execution messages + JoanaExecution.main(Arrays.copyOfRange(args, 2, args.length)); + } catch (Exception e) { + result = new NotOKResult(args[1] + "\n" + e.getMessage()); + } + + return result; + } + +} diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath index 69b87000..3eb8beb5 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath @@ -2,6 +2,7 @@ + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml index dd03c022..5270e09a 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml @@ -1,15 +1,69 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - TSE_Reiche_TransformationsAndModels - 0.0.1-SNAPSHOT - ../../../ - - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - 1.0.0-SNAPSHOT - eclipse-plugin - + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution + 1.0.0-SNAPSHOT + eclipse-plugin + + + 11 + 11 + + + + + + + + src + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 11 + 11 + + edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/**/*.java + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.2.0 + + + + true + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.JoanaExecution + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar + + + + + + + From d22871a91b439501fba83616e99e0b8f2a3460cd Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 11 Aug 2025 09:52:03 +0200 Subject: [PATCH 09/25] feat: divided sourcecode analysis execution into two features --- .../feature.xml | 14 ++++++++++++++ .../feature.xml | 14 ++++++++++++++ .../pom.xml | 1 - updatesite/category.xml | 8 +++++++- 4 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/feature.xml create mode 100644 bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/feature.xml diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/feature.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/feature.xml new file mode 100644 index 00000000..7af0c875 --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution/feature.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/feature.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/feature.xml new file mode 100644 index 00000000..d493f5c7 --- /dev/null +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/feature.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml index 5270e09a..849b9f8f 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml @@ -6,7 +6,6 @@ TSE_Reiche_TransformationsAndModels TSE_Reiche_TransformationsAndModels 0.0.1-SNAPSHOT - ../../../ edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution diff --git a/updatesite/category.xml b/updatesite/category.xml index 7d2f186d..880f60ce 100644 --- a/updatesite/category.xml +++ b/updatesite/category.xml @@ -1,4 +1,10 @@ - + + + + + + + From 09394adec383aa50add3126ff58ae654c60280f7 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 11 Aug 2025 11:12:09 +0200 Subject: [PATCH 10/25] fix: fixed features --- .../.polyglot.META-INF | 0 .../.polyglot.META-INF | 0 .../.polyglot.META-INF | 0 .../.polyglot.META-INF | 0 .../.polyglot.META-INF | 0 .../.polyglot.META-INF | 0 .../.polyglot.META-INF | 0 .../.classpath | 14 +--- .../.settings/org.eclipse.jdt.core.prefs | 8 +- .../pom.xml | 1 + .../.project | 17 ++++ .../build.properties | 1 + .../feature.xml | 26 ++++++ ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 715 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 ++++ .../target/p2content.xml | 74 ++++++++++++++++++ .../.project | 17 ++++ .../build.properties | 1 + .../feature.xml | 26 ++++++ ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 717 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 ++++ .../target/p2content.xml | 74 ++++++++++++++++++ 26 files changed, 334 insertions(+), 15 deletions(-) create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.polyglot.META-INF create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.polyglot.META-INF create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.polyglot.META-INF create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.polyglot.META-INF create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.polyglot.META-INF create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.polyglot.META-INF create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.polyglot.META-INF create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.project create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.project create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.polyglot.META-INF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.polyglot.META-INF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.polyglot.META-INF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.polyglot.META-INF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.polyglot.META-INF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.polyglot.META-INF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.polyglot.META-INF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.polyglot.META-INF new file mode 100644 index 00000000..e69de29b diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath index 3eb8beb5..7931ec26 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath @@ -1,12 +1,12 @@ - + - - + + @@ -17,13 +17,5 @@ - - - - - - - - diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs index 4d5509e1..deb47996 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.settings/org.eclipse.jdt.core.prefs @@ -1,8 +1,8 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=11 +org.eclipse.jdt.core.compiler.compliance=17 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate @@ -11,5 +11,5 @@ org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning -org.eclipse.jdt.core.compiler.release=disabled -org.eclipse.jdt.core.compiler.source=11 +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml index 849b9f8f..5270e09a 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml @@ -6,6 +6,7 @@ TSE_Reiche_TransformationsAndModels TSE_Reiche_TransformationsAndModels 0.0.1-SNAPSHOT + ../../../ edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.project b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.project new file mode 100644 index 00000000..4e5eca14 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml new file mode 100644 index 00000000..95eb752f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..f96934a650d8fb2b0a5eba468c6b30a2feb4d62a GIT binary patch literal 715 zcmWIWW@h1HVBlb2;Ed#sWpbOGc6H7{qQuQiwbJk9>&p%`!aP)gk*9mJs2d71$Ow6sFOM|RKWn+GG zh_&bbS>9OpOUgiC;h~V~P4D)8x4s?jTPA&G|3Ryjp}xPis90*OYYp-By?6iFUcs3? zo3l92uyaS&#ROepaaoZ4^5rZ`evi2~g4Q)3%vj>bep+!ELom;GKdUN>9Ko^!&HWm) zm^{5)zOhD3&J5YBmzI8Y=dHK;?;I^9rY)}9U!&!oGDp^BD#P)$ChXyIIXzL8`SZFL ziZq(FeY1Y4VS$lx#uZ_^IYb;N1y;++R_D}KCqFtJ=&83e5{AYN`G?-9I^d#)Y*`XI;*plwWajL-3?i zm2E%VpI+pN33Ze_cHK16sK-Cx$n6kUsjY?IxC6WynM9azCjwyb0)YU-TSpL$lq5jf za3>0oVh~u;s179I+K`e6#A1XA=#dK64kWfTt^|@uQ5@jS$_A2T2Et7s8kh8 B>Hh!# literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml new file mode 100644 index 00000000..a1fc93fb --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties new file mode 100644 index 00000000..06c7914d --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Mon Aug 11 11:08:17 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml new file mode 100644 index 00000000..fe9b3ab1 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml new file mode 100644 index 00000000..51562015 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.project b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.project new file mode 100644 index 00000000..00c353df --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml new file mode 100644 index 00000000..16c8fc43 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..8635bde9c3d1294445164833d45751089fbc8b98 GIT binary patch literal 717 zcmWIWW@h1HVBlb2;Ed#sWIrRr7W=B%A$pMS_e;OO_7t`pXN9U+=)g(RXRR`tCNDJ^)* z9HY1GwLR~b%hwwkIXIWy>Rwv?{_iNKlvlnw`QH3F-?X2=++5YHz#es{&R)e zWzTCm4L=hUPk;CBn%2NkqH7y#{G4&6@ck*T6AYwQUOrgVp?N^$@Y>0JbuTMgct1Q) z?p$UwiD_aj)3zs->a%2Bk3ZV5d&lZcyR=__+_6VL+vsH3BDaReVYB9H^P8!y-DA%0 zdhxq$EAML_r#I`g*>+{v9@&3>3j6Hy{IXB|n^%ZNERe50bYa$lnAvNmo}RkD(`Kb! zW54=u( + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties new file mode 100644 index 00000000..ce6c29b0 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Mon Aug 11 11:08:17 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml new file mode 100644 index 00000000..150416e5 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml new file mode 100644 index 00000000..72f851f6 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + From b1514b8eb1ef524b8bcc27d0b29bb54eb40547b6 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 11 Aug 2025 11:15:28 +0200 Subject: [PATCH 11/25] fix: fixed missed declaration in pom.xml --- features/.project | 17 ---- features/build.properties | 1 - ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 715 -> 715 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 70 ++++++++-------- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 717 -> 717 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- features/feature.xml | 33 -------- features/pom.xml | 14 ---- ...lysis.execution.feature-1.0.0-SNAPSHOT.jar | Bin 733 -> 0 bytes features/target/feature.xml | 33 -------- features/target/local-artifacts.properties | 4 - features/target/p2artifacts.xml | 15 ---- features/target/p2content.xml | 75 ------------------ pom.xml | 3 +- 20 files changed, 54 insertions(+), 245 deletions(-) delete mode 100644 features/.project delete mode 100644 features/build.properties delete mode 100644 features/feature.xml delete mode 100644 features/pom.xml delete mode 100644 features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar delete mode 100644 features/target/feature.xml delete mode 100644 features/target/local-artifacts.properties delete mode 100644 features/target/p2artifacts.xml delete mode 100644 features/target/p2content.xml diff --git a/features/.project b/features/.project deleted file mode 100644 index 0b0b2b4b..00000000 --- a/features/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature - - - - - - org.eclipse.pde.FeatureBuilder - - - - - - org.eclipse.pde.FeatureNature - - diff --git a/features/build.properties b/features/build.properties deleted file mode 100644 index 64f93a9f..00000000 --- a/features/build.properties +++ /dev/null @@ -1 +0,0 @@ -bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index f96934a650d8fb2b0a5eba468c6b30a2feb4d62a..a6a97615ea2409ccf330b7b250a3aa27c322cdfd 100644 GIT binary patch delta 366 zcmV-!0g?X81@3IG5I007;Q3nl^Gkure@-B}A;WA%yJk-H^-f{H||1O^Hd zOQm+II=J=$7Kd&8r-6R@8Zb0Mg{k&r-FxqMwyz%VHkf~bbyBN_RJ0^HD6WN6%Z9wY z&U!;K9%c0cm=6}R{J5lO2#7$}($h6_9*{b*rCbMt(MX*RmP1SdrWo#>bo6l8BJ6+% zA5k;~l9Y(-6R;tZsCt=yPtU4zwcB6Z{jxtOhgDTRRu5#99YnPN$E`F6R~~GPT6u4t zilS{>3Olwj2(gDv(a}ZgDgJ$`JlK48YAJv2M6JLA{Wuc3)&%9+?5$j`{9WWlbq$26jdQN^rLk69aRL(QR zKPvZT;8zutVSL??1;h9RMZ8U2q){7XKTt~n0u%!Z000O80Ns-i0yY8NlScwU2;Er= MTVwT!+LMq1JLhGff&c&j delta 366 zcmV-!0g?X81@3IG5I000S*3nl>xkure@30VtUDukX^k-H^-KtiHb0t1DK zrBXXp9bEee7Kd&8r-6R@8ZZ!{!c=>*?!EUr+gD9?8_d7KI;mAn`m`iDD6WN6O-

FJs|4@jNZQm%u+XrxXD%OR!!Qw;Y`I(j&45q7|X zk0_b~NlHZa1z3}5RJ|^LW@pv8+U+myK{*(fqkg}9Do13T9YmD?$E`F6R~~GPT6u4t zi=u5?3Olwj2(gDv(a}ZgDgI-oJlK4GYAJu|M6JLA{X7!7)&%9+?5%88{vqSH33m_P!1mAlI9k+NY;C(WJ@4}p^+*j{L7D%YnafjLd`@n&&eOC$*@zB%6W$P zN9EBBTvb6C#@97jGK^19#M@Lw8ntou3s6e|0u%!Z000O8011;20yY5&lScwU2nksW MTPlQ}R+EqdJ2e!UT>t<8 diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml index a1fc93fb..57cf7184 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202508110914"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202508110908" + version="1.0.0.202508110914" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index 06c7914d..c52d2b1c 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Mon Aug 11 11:08:17 CEST 2025 +#Mon Aug 11 11:14:56 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index fe9b3ab1..7cdd4672 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index 51562015..f22f62e0 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,29 +1,34 @@ - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] @@ -33,35 +38,30 @@ [Enter Copyright Description here.] - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index 8635bde9c3d1294445164833d45751089fbc8b98..639c537ad2ce2325f7cba0c4e436bfe5ddb3bea0 100644 GIT binary patch delta 368 zcmV-$0gwL81@3IG5I007;Q3nl^Gkure@-B}A;dtCm?k-H^-f?A1I2@EX^ zRmXO!I=J=$E{E;E3(4v(NQpv&Q@vtdm+bq@pFsL2)glS~TSS zZ8jK@$vCU$z(5FU^&DTV2a_^Nk_kRJi-Qe z@R3AQ9!Y`7z5pBYvJ*{zkD_C-+g;qla(G{ks;Ydb?#MXXiE06kTWNN#JlL4D^xixc zMccL%Hf(JWVt4DJql?x<{Kr&zu=(uJQU2VCT7m`oxhHh33CgwETDe&IUgSx234A)) zuOUy?1VqU}Iq1bD%_ZzLS+AjzErAS%g;Xiw7V{?OETLP4nu&ollYbCrI_%V>a-Ja` zOQTMy?-QI=K^ewZ4Vg2HZ&1YR)J6Jgi?Fk^(#K^{f^E delta 368 zcmV-$0gwL81@3IG5I000S*3nl>xkure@30VtU?LTt(k-H^-h*T-95*S(- zs*decb#UziTrRfjKMnNL*MNZt38vbMrF-xF&OSHOO^5jpSSPh=$(WWT2gS9JYT1&v z*ZHU>(@EAWfcan{%lAu)mVgL!Ej?W`=K-k`-<0cMFdC`T!E%Txz!bx+la7Arc!Uk` z;3J8qJdy&DeFC=Rc_*5G9Yx3Du)Dacvbrnl@wmJ%Yck1pqDFw@R+^nF4>l&Pyf+U; z(f2)t4eJa-?5-;Yx@bMbzt5Bho6ip&ffG9aA2RCs^a|wG%)@!I_OCW<`DOF1Nk9m`Gme9RI&BVww$zO;wtp+uzoM(u~ zQavc$`UGcHP=@h!OBM{{8x-+6O_9FZB>MwUO928D0}22D2mk;HlM(_p0SS{y0zn7~ OSqoe3KXUk!k^(yl7@_X~ diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml index 9abedb2c..041903e8 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202508110914"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution" download-size="12" install-size="18" - version="1.0.0.202508110908" + version="1.0.0.202508110914" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index ce6c29b0..f71baafe 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Mon Aug 11 11:08:17 CEST 2025 +#Mon Aug 11 11:14:57 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index 150416e5..f6e66c7f 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index 72f851f6..43ec2373 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,6 +1,6 @@ - + @@ -11,15 +11,15 @@ - + - + (org.eclipse.update.install.features=true) - + @@ -38,8 +38,8 @@ [Enter Copyright Description here.] - - + + @@ -51,11 +51,11 @@ - + - - + + (org.eclipse.update.install.features=true) diff --git a/features/feature.xml b/features/feature.xml deleted file mode 100644 index 8133d44c..00000000 --- a/features/feature.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - - - - - - diff --git a/features/pom.xml b/features/pom.xml deleted file mode 100644 index a1b06c13..00000000 --- a/features/pom.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - TSE_Reiche_TransformationsAndModels - 0.0.1-SNAPSHOT - - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature - 1.0.0-SNAPSHOT - eclipse-feature - diff --git a/features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar b/features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar deleted file mode 100644 index aa6b46523d88827eac100de73be35b2ca904b9c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 733 zcmWIWW@h1HVBlb2@Gklq#ef7jfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy`uJsgFg@ zj0_BinHdfA4)toK= zASvguJ@1#x*Bd;Q1y-yonC9~R-tW6lCuMDl^!&nljdN{Q%mh2P1v8#Goz4F9%jj+I zhm<*?#tZBsPF(oM5tsa+QKwbi`<0EyqaU*jWP5tt9+hn1N#Y7{eR_@4J%L&02Zy32 z*K!?CdxvX3ex7NHIvsc`*ElY9zs#5R)W9i6Ir=xxUGeC_4AHdbP6vuiZR-E6;c4cUbFM znJ%2OJV?&_u;0sD?jKfjoeJ2t=3~#PAAFx~_inC^IBkE%c!$Ng2W*!^Du4AJyU8Em z&B!Fej5}EX0~`nh7~VR9Xrx2}(uO;kfE0tkl16nP3D<^{Xdo6NOhAujuy!D^rEw*Y WM2hqPZ&o&tBr_0h0@9*PARYi;JP42g diff --git a/features/target/feature.xml b/features/target/feature.xml deleted file mode 100644 index 7c92a891..00000000 --- a/features/target/feature.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - - - - - - diff --git a/features/target/local-artifacts.properties b/features/target/local-artifacts.properties deleted file mode 100644 index 788fbbcb..00000000 --- a/features/target/local-artifacts.properties +++ /dev/null @@ -1,4 +0,0 @@ -#Mon Jul 21 14:18:20 CEST 2025 -artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.feature-1.0.0-SNAPSHOT.jar -artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/target/p2artifacts.xml -artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/target/p2content.xml diff --git a/features/target/p2artifacts.xml b/features/target/p2artifacts.xml deleted file mode 100644 index 2cbd75d3..00000000 --- a/features/target/p2artifacts.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/target/p2content.xml b/features/target/p2content.xml deleted file mode 100644 index 9cac46e0..00000000 --- a/features/target/p2content.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - - - - - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - diff --git a/pom.xml b/pom.xml index ac571797..d7dcc650 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,8 @@ bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - features + features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature + features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature updatesite From a5b7ebf439a2bea52ecbf936b22e857821b6a1f3 Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Mon, 11 Aug 2025 11:22:19 +0200 Subject: [PATCH 12/25] Update deploy-updatesite.yml to deploy the updatesite to the root page --- .github/workflows/deploy-updatesite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index 849d9dc3..ada17614 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -23,6 +23,6 @@ jobs: with: personal_token: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} external_repository: CASCADE-AnalysisCoupling/updatesite - destination_dir: sourcecode_analysis_execution/ + destination_dir: . publish_dir: updatesite/target/repository publish_branch: main From 602096fc4df7161403381996b00a85d57f77220a Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 11 Aug 2025 12:10:12 +0200 Subject: [PATCH 13/25] docs: changed feature names --- .../feature.xml | 2 +- .../feature.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml index 95eb752f..2a2c87d3 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml @@ -1,7 +1,7 @@ diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml index 16c8fc43..15b8031d 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml @@ -1,7 +1,7 @@ From f77beaf0bd5a4ced0f384643feaca6995e36aca6 Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:31:31 +0200 Subject: [PATCH 14/25] Update deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index ada17614..a7607d5a 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -23,6 +23,6 @@ jobs: with: personal_token: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} external_repository: CASCADE-AnalysisCoupling/updatesite - destination_dir: . + destination_dir: content/ publish_dir: updatesite/target/repository publish_branch: main From a733ed18bfce28acf2837e3ee3651f1f53ec8660 Mon Sep 17 00:00:00 2001 From: Simon Berlinger <72871718+SimonBerlinger@users.noreply.github.com> Date: Mon, 11 Aug 2025 12:34:40 +0200 Subject: [PATCH 15/25] Update deploy-updatesite.yml --- .github/workflows/deploy-updatesite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-updatesite.yml b/.github/workflows/deploy-updatesite.yml index a7607d5a..2c057a7e 100644 --- a/.github/workflows/deploy-updatesite.yml +++ b/.github/workflows/deploy-updatesite.yml @@ -23,6 +23,6 @@ jobs: with: personal_token: ${{ secrets.UPDATE_SITE_DEPLOY_SECRET }} external_repository: CASCADE-AnalysisCoupling/updatesite - destination_dir: content/ + destination_dir: release/ publish_dir: updatesite/target/repository publish_branch: main From c33d35fd3318d0fe4a2d48f8b18d37b7f7306bd3 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Sun, 17 Aug 2025 13:21:58 +0200 Subject: [PATCH 16/25] feat: transformed dependee projects for accessanalysis2codeql and accessanalysis2codeql to maven, integrated into project structure --- .../.classpath | 21 ++++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 7 +- .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.classpath | 23 +++++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../META-INF/MANIFEST.MF | 3 +- .../pom.xml | 15 ++++ .../.classpath | 25 +++++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.classpath | 39 ++++++--- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../META-INF/MANIFEST.MF | 1 - .../pom.xml | 15 ++++ .../.classpath | 18 ++++- .../.gitignore | 1 + .../.project | 6 ++ .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.classpath | 14 +++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.classpath | 16 +++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../META-INF/MANIFEST.MF | 5 +- .../pom.xml | 15 ++++ .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.gitignore | 1 + .../.project | 6 ++ .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.gitignore | 1 + .../.project | 6 ++ .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.classpath | 16 +++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 7 +- .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.gitignore | 1 + .../.project | 6 ++ .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.gitignore | 1 + .../.project | 6 ++ .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../.gitignore | 1 + .../.project | 6 ++ .../.settings/org.eclipse.m2e.core.prefs | 4 + .../pom.xml | 15 ++++ .../pom.xml | 54 ------------- bundles/Util/.classpath | 16 +++- bundles/Util/.gitignore | 1 + bundles/Util/.project | 6 ++ .../Util/.settings/org.eclipse.jdt.core.prefs | 10 +++ .../Util/.settings/org.eclipse.m2e.core.prefs | 4 + bundles/Util/META-INF/MANIFEST.MF | 2 +- bundles/Util/pom.xml | 15 ++++ ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 715 -> 716 bytes .../target/feature.xml | 6 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 74 +++++++++--------- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 717 -> 718 bytes .../target/feature.xml | 6 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 74 +++++++++--------- pom.xml | 39 +++++++++ 102 files changed, 697 insertions(+), 207 deletions(-) create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.gitignore delete mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/pom.xml create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.gitignore delete mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/pom.xml create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.gitignore delete mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/pom.xml create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.gitignore delete mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/pom.xml create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.gitignore create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/pom.xml create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.gitignore delete mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/pom.xml create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.gitignore delete mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.gitignore delete mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.gitignore delete mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/pom.xml create mode 100644 bundles/Util/.gitignore create mode 100644 bundles/Util/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/Util/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Util/pom.xml diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.classpath b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.classpath index 6a143b46..4ab2b458 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.classpath +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.classpath @@ -2,11 +2,26 @@ - + - - + + + + + + + + + + + + + + + + + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.gitignore b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.project b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.project index 86f8448c..cae989ca 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.project +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.jdt.core.prefs index 62ef3488..052ee6ed 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.jdt.core.prefs @@ -1,9 +1,10 @@ eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=17 +org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/pom.xml b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/pom.xml new file mode 100644 index 00000000..6f60cd6f --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils + edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.classpath b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.classpath index 5b1ec0d4..4ab2b458 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.classpath +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.classpath @@ -1,12 +1,27 @@ - + - + - - + + + + + + + + + + + + + + + + + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.gitignore b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.project b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.project index 2a202b0b..70e9c8e2 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.project +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.jdt.core.prefs index 7adc0fb9..e8c450c0 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.jdt.core.prefs @@ -5,6 +5,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF index c03833ca..4f8bd106 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF @@ -4,8 +4,7 @@ Bundle-Name: Codeqlgenerator Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator Bundle-Version: 1.0.0.qualifier Export-Package: edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator, - edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates, - edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.utils + edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.codeqlgenerator Bundle-RequiredExecutionEnvironment: JavaSE-11 Require-Bundle: com.google.guava, diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/pom.xml b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/pom.xml new file mode 100644 index 00000000..ed9b89f5 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator + edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.classpath b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.classpath index 47ce7cd0..4ab2b458 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.classpath +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.classpath @@ -1,8 +1,27 @@ - + + + + + - - + + + + + + + + + + + + + + + + + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.gitignore b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.project b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.project index 521ce725..f6f02259 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.project +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.jdt.core.prefs index c9545f06..052ee6ed 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/pom.xml b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/pom.xml new file mode 100644 index 00000000..245709dd --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator + edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.classpath b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.classpath index daa14816..4ab2b458 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.classpath +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.classpath @@ -1,12 +1,27 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.gitignore b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.project b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.project index 0160696f..d4498b8e 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.project +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.jdt.core.prefs index 7adc0fb9..e8c450c0 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.jdt.core.prefs @@ -5,6 +5,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF index 7065c7ac..bc63a5f4 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF @@ -14,6 +14,5 @@ Require-Bundle: com.google.guava, edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator;bundle-version="1.0.0", edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils;bundle-version="1.0.0" Export-Package: edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.generators, - edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.templates, edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.utils, edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.utils diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/pom.xml b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/pom.xml new file mode 100644 index 00000000..887c1581 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator + edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.classpath b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.classpath index e801ebfb..5050774b 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.classpath +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.classpath @@ -1,7 +1,21 @@ - + + + + + - + + + + + + + + + + + diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.gitignore b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.project b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.project index f6b29ccf..15fdb6c9 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.project +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.jdt.core.prefs index c9545f06..052ee6ed 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/pom.xml b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/pom.xml new file mode 100644 index 00000000..8dedbda6 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.pcm2java + edu.kit.kastel.sdq.coupling.alignment.pcm2java + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.classpath b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.classpath index 2869279e..5050774b 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.classpath +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.classpath @@ -2,10 +2,20 @@ - + - + + + + + + + + + + + diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.gitignore b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.project b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.project index dbf3c8d6..bcbd6671 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.project +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.jdt.core.prefs index c9545f06..052ee6ed 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/pom.xml b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/pom.xml new file mode 100644 index 00000000..ab061b6d --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.classpath b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.classpath index 4a00becd..5050774b 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.classpath +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.classpath @@ -1,11 +1,21 @@ - + - + - + + + + + + + + + + + diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.gitignore b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.project b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.project index e27188f8..e195b318 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.project +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.jdt.core.prefs index bd1095bb..686cb9cd 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF index 397f5c29..af2c28e4 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana; Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: org.kit.kastel.sdq.coupling.alignment.accessanalysis2joana Bundle-RequiredExecutionEnvironment: JavaSE-11 -Require-Bundle: edu.kit.kastel.scbs.confidentialitymm, +Require-Bundle: org.modelversioning.emfprofile, com.google.guava, org.eclipse.xtext.xbase.lib, @@ -13,7 +13,6 @@ Require-Bundle: edu.kit.kastel.scbs.confidentialitymm, org.eclipse.xtend.lib.macro, edu.kit.kastel.sdq.coupling.models.joana, edu.kit.kastel.sdq.coupling.models.java, - edu.kit.ipd.sdq.commons.util.mdsdprofiles, org.eclipse.core.commands, edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator;bundle-version="1.0.0", edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils;bundle-version="1.0.0", @@ -21,8 +20,6 @@ Require-Bundle: edu.kit.kastel.scbs.confidentialitymm, org.eclipse.ui;bundle-version="3.118.100", edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.alignment.pcm2java;bundle-version="1.0.0", - ArchitectureAndStaticCodeAnalysisCouplingFramework;bundle-version="1.0.0", - Partitioner, edu.kit.kastel.sdq.coupling.util, edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences Export-Package: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana, diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/pom.xml b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/pom.xml new file mode 100644 index 00000000..5a1821b1 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.project index dea1efed..b6d502f1 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.core.resources.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/pom.xml new file mode 100644 index 00000000..c0cf59eb --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.codeql + edu.kit.kastel.sdq.coupling.models.codeql + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.project index 8d027419..2eee8013 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/pom.xml new file mode 100644 index 00000000..d0f62c6d --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence + edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.project index 6b9a29dc..b5147507 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/pom.xml new file mode 100644 index 00000000..5f844997 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.classpath b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.classpath index 9d57aec8..33f43087 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.classpath +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.classpath @@ -1,11 +1,21 @@ - - + - + + + + + + + + + + + + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.project index 85a30a09..aed7ff46 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.core.resources.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.jdt.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.jdt.core.prefs index 229876b1..e8c450c0 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.jdt.core.prefs @@ -1,10 +1,11 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=15 -org.eclipse.jdt.core.compiler.compliance=15 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=15 +org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/pom.xml new file mode 100644 index 00000000..e96b4d49 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.identifier + edu.kit.kastel.sdq.coupling.models.identifier + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.project index f3333f95..ce4db6f3 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/pom.xml new file mode 100644 index 00000000..9e965ab8 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.java + edu.kit.kastel.sdq.coupling.models.java + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.project index f022bed4..8350585b 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/pom.xml new file mode 100644 index 00000000..94296b83 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.joana + edu.kit.kastel.sdq.coupling.models.joana + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.project index 117c6d2f..e8f9cb73 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/pom.xml new file mode 100644 index 00000000..998f5227 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence + edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml index 5270e09a..443e1b67 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml @@ -12,58 +12,4 @@ edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution 1.0.0-SNAPSHOT eclipse-plugin - - - 11 - 11 - - - - - - - - src - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - 11 - 11 - - edu/kit/kastel/sdq/coupling/sourcecodeanalysis/joanaexecution/**/*.java - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.2.0 - - - - true - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.JoanaExecution - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.2.1 - - - attach-sources - - jar - - - - - - diff --git a/bundles/Util/.classpath b/bundles/Util/.classpath index 6ee44e2c..7931ec26 100644 --- a/bundles/Util/.classpath +++ b/bundles/Util/.classpath @@ -1,11 +1,21 @@ - - + - + + + + + + + + + + + + diff --git a/bundles/Util/.gitignore b/bundles/Util/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Util/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Util/.project b/bundles/Util/.project index b8cd1f73..4d68dbb5 100644 --- a/bundles/Util/.project +++ b/bundles/Util/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Util/.settings/org.eclipse.jdt.core.prefs b/bundles/Util/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..3ba2756b --- /dev/null +++ b/bundles/Util/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,10 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=15 +org.eclipse.jdt.core.compiler.compliance=15 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=15 diff --git a/bundles/Util/.settings/org.eclipse.m2e.core.prefs b/bundles/Util/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Util/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Util/META-INF/MANIFEST.MF b/bundles/Util/META-INF/MANIFEST.MF index db434d74..9a131f12 100644 --- a/bundles/Util/META-INF/MANIFEST.MF +++ b/bundles/Util/META-INF/MANIFEST.MF @@ -3,6 +3,6 @@ Bundle-ManifestVersion: 2 Bundle-Name: Util Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.util Bundle-Version: 1.0.0.qualifier -Bundle-RequiredExecutionEnvironment: JavaSE-15 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Automatic-Module-Name: edu.kit.kastel.sdq.coupling.util Export-Package: edu.kit.kastel.sdq.coupling.util.iterative.transitivereduction diff --git a/bundles/Util/pom.xml b/bundles/Util/pom.xml new file mode 100644 index 00000000..b129888f --- /dev/null +++ b/bundles/Util/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../ + + edu.kit.kastel.sdq.coupling.util + edu.kit.kastel.sdq.coupling.util + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index a6a97615ea2409ccf330b7b250a3aa27c322cdfd..f8a6106a0ef025bca365625eba5ac747f0344de6 100644 GIT binary patch delta 392 zcmX@jdWMxZz?+$ci-CcIfniaS;6z>(W)Njk&kLlYHzm)!Y{baG@NVJ(g?a}k*H9+r z*3P9t)}gX7zd6L(bN?)FtotQpAh7UINcE<7d%s)X4)-mSKC}Oz)yh!cUt3fxHP*F; z`1;n^CE0v zn(3nFPx!B-+|cxVYUBK8@uv*7b*mQeJbpb(NAj4u#-rR-N@s6b{ALaCW@Hj!h6m_m aAtn=0h)(uovPTWl$y1pO*jShtfB*n#`lA8> delta 391 zcmX@ZdYY9tz?+$ci-CcIf#Gf>_e5S5W)Njk&kLlYlfQP}GGt_6csuccLVZ)0%W4)j zE@AJbWvi@qd}9=A&;7H!vF?|Yfr(S=%5N!mtKXMzTQB$CY({-!Y0&DnkS!{f8tYm^ zPPgsZd#=jaNG|m&(+qyGO@DSQ$>8X4xPIxfX|db{tBp%z*qbkU%;lTr?8CTB;@#Ym zF9kQ0-ZZew2b!=>n$qz`c!T2P6;(6q{m-u|-g-O!&fiV;8ttK>c47P}Q)FGXG8|uP z!X7S{(-T#hKd)<1ZZwzmHbah$?Y + label="CodeQL-Execution" + version="1.0.0.202508171020"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202508110914" + version="1.0.0.202508171020" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index c52d2b1c..66f29dbc 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Mon Aug 11 11:14:56 CEST 2025 +#Sun Aug 17 12:21:02 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index 7cdd4672..abb321df 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index f22f62e0..91599a05 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,34 +1,29 @@ - - - + + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - - + + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index 639c537ad2ce2325f7cba0c4e436bfe5ddb3bea0..b8ff4d18af3b98c554129a72dbaf373c5d7663cc 100644 GIT binary patch delta 394 zcmX@hdXAMhz?+$ci-CcIfniaS;6z>(W)Njk&kLlY=gaAOm@qOhyq$PJp}r$TG?bG^ zmnZai*($3Y-x%}sw!OCJ{c`zwLn8<0vRmCttKa`UXLo(GZ~IUF2=%R5CuU4jVL!Tc zLe|v@+pizZa7w$pCXVUzL8oc&r;G413T9~A=Fa@waHTWh9br59hjH@kh&i{JAOwUx3dZo4kZ9J@vC(f#MAn$L>2Py4jo@rsnrg?`(_4Bvot zXRn>Qdh5Q+ypZV!j!*t8^(n>IVT#O@=Gi-z>}=Vq^4c_Hlj?+n8zyO~{yBc&q^0+Z zxP@s+=1-pJADJ1}JS*g!@sZ?ABaOSiSkglS+CFYm^ltme+f^}lmq&f>tiOx_-i%Bl f%_e5S5W)Njk&kLlYt7HD1GG=68cr)>ULVZ(IXBa1s zE>Gz3vQ<_)zA@^xzy0OU{P&A#f`XHh@VBIw_p0}AKL0gk^RYkTYbHmTE?J~{(y>r? zNtDTxzqw`-6Hi*Ketw{4!-S{5Rb8DOSawaCw{FJghAW-&r%DYZdat}puskA?(Dm?| zr~Cd=n?r0BA11m4%Xv1Q*vBCKX_K&TegC55jkja(94@Me?_0I1X2rV`7PmXI82h3# z%huW4n6c%{JsUCC+uKCUa&iTd%3m*9+f@aGpdR8*G~14wVbE6 z-i+EA@hk3$XDMfm)y?&a{?}MsPC8n?II4P9^^Ixd`h}Bp8+qDVLo^?XeO7y}voN}K zR%fHxza`2cT5CJ| + label="Joana-Execution" + version="1.0.0.202508171020"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution" download-size="12" install-size="18" - version="1.0.0.202508110914" + version="1.0.0.202508171020" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index f71baafe..838a0114 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Mon Aug 11 11:14:57 CEST 2025 +#Sun Aug 17 12:21:02 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index f6e66c7f..78fa9996 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index 43ec2373..0aa93b86 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,34 +1,29 @@ - - - + + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - - + + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/pom.xml b/pom.xml index d7dcc650..6cc91c7c 100644 --- a/pom.xml +++ b/pom.xml @@ -7,8 +7,29 @@ 0.0.1-SNAPSHOT pom + + bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution + + bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana + + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator + bundles/Util + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences + features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature updatesite @@ -23,4 +44,22 @@ + + + + maven-central + https://repo.maven.apache.org/maven2 + default + + + eclipse-2023-09 + https://download.eclipse.org/releases/2023-09 + p2 + + + palladio-nightly + https://sdqweb.ipd.kit.edu/eclipse/palladiosimulator/nightly/ + p2 + + From 0d2f206a52fe7dc3594ab2635901b6b34746a826 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Sun, 17 Aug 2025 13:22:30 +0200 Subject: [PATCH 17/25] fix: fixed manifest.mf for accessanalysis2joana --- .../META-INF/MANIFEST.MF | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF index af2c28e4..397f5c29 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana; Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: org.kit.kastel.sdq.coupling.alignment.accessanalysis2joana Bundle-RequiredExecutionEnvironment: JavaSE-11 -Require-Bundle: +Require-Bundle: edu.kit.kastel.scbs.confidentialitymm, org.modelversioning.emfprofile, com.google.guava, org.eclipse.xtext.xbase.lib, @@ -13,6 +13,7 @@ Require-Bundle: org.eclipse.xtend.lib.macro, edu.kit.kastel.sdq.coupling.models.joana, edu.kit.kastel.sdq.coupling.models.java, + edu.kit.ipd.sdq.commons.util.mdsdprofiles, org.eclipse.core.commands, edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator;bundle-version="1.0.0", edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils;bundle-version="1.0.0", @@ -20,6 +21,8 @@ Require-Bundle: org.eclipse.ui;bundle-version="3.118.100", edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.alignment.pcm2java;bundle-version="1.0.0", + ArchitectureAndStaticCodeAnalysisCouplingFramework;bundle-version="1.0.0", + Partitioner, edu.kit.kastel.sdq.coupling.util, edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences Export-Package: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana, From dfaa4e355d94d94a608cbe05c89fff7911f23816 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Mon, 18 Aug 2025 15:43:27 +0200 Subject: [PATCH 18/25] feat: converted more dependency projects to maven, added repositories to parent pom.xml, created remaining feature projects --- .../META-INF/MANIFEST.MF | 1 - .../.classpath | 18 ++++++- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.jdt.core.prefs | 10 ++++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.classpath | 16 ++++-- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.jdt.core.prefs | 7 +-- .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.classpath | 18 ++++++- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 4 -- .../pom.xml | 15 ++++++ .../.classpath | 16 ++++-- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.jdt.core.prefs | 7 +-- .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.classpath | 20 +++++-- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 18 +++++++ .../.classpath | 16 ++++-- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.classpath | 18 ++++++- .../.gitignore | 1 + .../.project | 6 +++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 7 +-- .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.classpath | 18 ++++++- .../.gitignore | 1 + .../.project | 6 +++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 10 ++++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.classpath | 16 ++++-- .../.gitignore | 1 + .../.project | 6 +++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 10 ++++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../META-INF/MANIFEST.MF | 2 +- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 15 ++++++ .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../.gitignore | 1 + .../.project | 6 +++ .../.settings/org.eclipse.m2e.core.prefs | 4 ++ .../pom.xml | 15 ++++++ .../META-INF/MANIFEST.MF | 2 +- .../.classpath | 4 +- .../META-INF/MANIFEST.MF | 3 +- .../pom.xml | 1 - .../.polyglot.feature.xml | 15 ++++++ .../.project | 17 ++++++ .../org.eclipse.core.resources.prefs | 0 .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.polyglot.feature.xml | 15 ++++++ .../.project | 17 ++++++ .../org.eclipse.core.resources.prefs | 0 .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.polyglot.feature.xml | 15 ++++++ .../.project | 17 ++++++ .../org.eclipse.core.resources.prefs | 0 .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.polyglot.feature.xml | 15 ++++++ .../.project | 17 ++++++ .../org.eclipse.core.resources.prefs | 0 .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.project | 17 ++++++ .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.project | 17 ++++++ .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.project | 17 ++++++ .../build.properties | 1 + .../feature.xml | 26 +++++++++ .../.polyglot.feature.xml | 15 ++++++ ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 716 -> 716 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 +++---- .../.polyglot.feature.xml | 15 ++++++ .../feature.xml | 2 +- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 718 -> 718 bytes .../target/feature.xml | 8 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 +++---- pom.xml | 50 ++++++++++++++++-- 170 files changed, 1217 insertions(+), 101 deletions(-) create mode 100644 bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.gitignore create mode 100644 bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.gitignore create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.gitignore create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.gitignore create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.gitignore create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.gitignore create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.gitignore delete mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.gitignore delete mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/pom.xml create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.gitignore delete mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.gitignore delete mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.gitignore delete mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.gitignore delete mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/pom.xml create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.gitignore create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/pom.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.project rename {bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana => features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature}/.settings/org.eclipse.core.resources.prefs (100%) create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.project rename {bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis => features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature}/.settings/org.eclipse.core.resources.prefs (100%) create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.project rename {bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar => features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature}/.settings/org.eclipse.core.resources.prefs (100%) create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.project rename {bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis => features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature}/.settings/org.eclipse.core.resources.prefs (100%) create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/.project create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/.project create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/.project create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF index f1b8a369..f7efda4e 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF @@ -22,7 +22,6 @@ Require-Bundle: org.palladiosimulator.pcm, edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator, edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.alignment.pcm2java;bundle-version="1.0.0", - ArchitectureAndStaticCodeAnalysisCouplingFramework, edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence;bundle-version="0.1.0" Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql Bundle-RequiredExecutionEnvironment: JavaSE-11 diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.classpath b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.classpath index 1fa3e680..5050774b 100644 --- a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.classpath +++ b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.classpath @@ -1,7 +1,21 @@ - + + + + + - + + + + + + + + + + + diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.gitignore b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.project b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.project index 393d4dd9..40b47cf9 100644 --- a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.project +++ b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..20cc7b58 --- /dev/null +++ b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,10 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml new file mode 100644 index 00000000..aa967999 --- /dev/null +++ b/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.classpath index 3628e336..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.classpath @@ -1,11 +1,21 @@ - + - + - + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.project index 30ca64d2..2a238fd1 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs index d4540a53..ac772f96 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs @@ -1,10 +1,11 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=15 +org.eclipse.jdt.core.compiler.compliance=15 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=17 +org.eclipse.jdt.core.compiler.source=15 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/pom.xml new file mode 100644 index 00000000..858ef046 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis + edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.classpath index 81fe078c..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.classpath @@ -1,7 +1,21 @@ - + + + + + - + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.project index 8f69e3fe..3ba1c723 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs index 62ef3488..20cc7b58 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=17 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/META-INF/MANIFEST.MF index 21414e87..926b9a98 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/META-INF/MANIFEST.MF @@ -18,9 +18,5 @@ Require-Bundle: edu.kit.kastel.sdq.coupling.models.java, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis -<<<<<<< HEAD:bundles/BackProjection/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/META-INF/MANIFEST.MF Bundle-RequiredExecutionEnvironment: JavaSE-17 -======= -Bundle-RequiredExecutionEnvironment: JavaSE-15 ->>>>>>> coverageEvaluationExtension:bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/META-INF/MANIFEST.MF Export-Package: edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/pom.xml new file mode 100644 index 00000000..aad34b92 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis + edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.classpath index 4d9f7a20..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.classpath @@ -1,11 +1,21 @@ - + - + - + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.project index 2a042371..3d3ac1e9 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.jdt.core.prefs index 229876b1..e8c450c0 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.jdt.core.prefs @@ -1,10 +1,11 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=15 -org.eclipse.jdt.core.compiler.compliance=15 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=15 +org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/pom.xml new file mode 100644 index 00000000..f6290c92 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar + edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath index 81fe078c..2fbb6020 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath @@ -1,7 +1,21 @@ - + + + + + - - + + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.project index 484c6319..43ab8dbd 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs index d4540a53..d089a9b7 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs @@ -5,6 +5,7 @@ org.eclipse.jdt.core.compiler.compliance=17 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml new file mode 100644 index 00000000..9e3db314 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml @@ -0,0 +1,18 @@ + + 4.0.0 + edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis + edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis + 0.0.1-SNAPSHOT + + src + + + maven-compiler-plugin + 3.8.1 + + 17 + + + + + \ No newline at end of file diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.classpath index 4a00becd..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.classpath @@ -1,11 +1,21 @@ - + - + - + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.project index 22898730..d8a3d66b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs index c9545f06..052ee6ed 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=11 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/pom.xml new file mode 100644 index 00000000..068ec777 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis + edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.classpath index 042d5759..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.classpath @@ -1,7 +1,21 @@ - + + + + + - + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.project index 7bef402d..d82956ef 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.core.resources.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.jdt.core.prefs index c05cfdd9..20cc7b58 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.jdt.core.prefs @@ -1,9 +1,10 @@ eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=15 -org.eclipse.jdt.core.compiler.compliance=15 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=15 +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/pom.xml new file mode 100644 index 00000000..6e0a26d6 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification + edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.classpath index 1fa3e680..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.classpath @@ -1,7 +1,21 @@ - + + + + + - + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.project index 1b0cdc79..b8502aba 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.core.resources.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..20cc7b58 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,10 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/pom.xml new file mode 100644 index 00000000..427d33b4 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification + edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.classpath index e90129ef..138e03b8 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.classpath @@ -2,11 +2,21 @@ - + - - + + + + + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.gitignore b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.project b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.project index a14714f2..2c588fa1 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.project +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.core.resources.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..20cc7b58 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,10 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.m2e.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/pom.xml new file mode 100644 index 00000000..afb4977e --- /dev/null +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar + edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.project index 7d6e90f8..db118a0c 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF index a0d9484a..64d15315 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.codeqlresultingvalues;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.codeqlresultingvalues -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/pom.xml new file mode 100644 index 00000000..04e8c211 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.codeqlresultingvalues + edu.kit.kastel.sdq.coupling.codeqlresultingvalues + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.project index a82fc758..e819b626 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF index 462bd18b..1755faed 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/pom.xml new file mode 100644 index 00000000..62a53804 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation + edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF index 737c8320..bacf58f6 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.codeql;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.codeql -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.project index ee41a87f..98e66d9b 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF index 7cfa5523..d06a0227 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.codeqlscar;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.codeqlscar -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/pom.xml new file mode 100644 index 00000000..fbe72a54 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.codeqlscar + edu.kit.kastel.sdq.coupling.models.codeqlscar + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF index 8a472538..c897a1cf 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF index 82f37c78..3df3a7a7 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.project index bf5abd34..732e42f8 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF index f7cf4564..f1da37f4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/pom.xml new file mode 100644 index 00000000..0f4b9487 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.project index f08c4580..137f2434 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF index a6a82a4e..044703a6 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/pom.xml new file mode 100644 index 00000000..ecd5e856 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.project index bc714c3b..fe66aa1a 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.core.resources.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/pom.xml new file mode 100644 index 00000000..2db38152 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.project index 850135ad..ed1c96f5 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.core.resources.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/META-INF/MANIFEST.MF index 978ddf61..35ca7ccb 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/pom.xml new file mode 100644 index 00000000..1c916aaf --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.project index b6c802dc..e5db92d9 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/pom.xml new file mode 100644 index 00000000..c8c3a39d --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.project index f56426e0..4007da10 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/pom.xml new file mode 100644 index 00000000..08eb0978 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.project index 472f38fd..fbafb0f5 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.core.resources.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/META-INF/MANIFEST.MF index f0914f99..e7561acd 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/pom.xml new file mode 100644 index 00000000..fbd35b20 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation + edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF index d1d05c7d..ab3c7fc1 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.identifier;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.identifier -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF index 9b6f121a..e7c713a3 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.java;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.java -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF index abf3a73c..522eb8f7 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.joana;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.joana -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.project index 47a118a8..eecd9e33 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/pom.xml new file mode 100644 index 00000000..858404a1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.joanaresultingvalues + edu.kit.kastel.sdq.coupling.models.joanaresultingvalues + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.gitignore b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.project b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.project index 9fbf02ab..b189a752 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.project +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.project @@ -20,8 +20,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.sirius.nature.modelingproject org.eclipse.jdt.core.javanature org.eclipse.pde.PluginNature diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.settings/org.eclipse.m2e.core.prefs b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/pom.xml b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/pom.xml new file mode 100644 index 00000000..670b4bf9 --- /dev/null +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + + edu.kit.kastel.sdq.coupling.models.joanascar + edu.kit.kastel.sdq.coupling.models.joanascar + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF index 836a71eb..8db10241 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath index 7931ec26..4ba97d4d 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/.classpath @@ -1,11 +1,11 @@ - + + - diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF index 42776a68..f1ac728b 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/META-INF/MANIFEST.MF @@ -6,5 +6,4 @@ Bundle-Version: 1.0.0.qualifier Bundle-RequiredExecutionEnvironment: JavaSE-17 Automatic-Module-Name: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution Export-Package: edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution, - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.filehandling, - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.iterative + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.filehandling diff --git a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml index 2d89ec7e..443e1b67 100644 --- a/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml +++ b/bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution/pom.xml @@ -13,4 +13,3 @@ 1.0.0-SNAPSHOT eclipse-plugin - diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml new file mode 100644 index 00000000..196d74bb --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + features + 0.0.1-SNAPSHOT + ../.polyglot.pom.tycho + + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature + 1.0.0-SNAPSHOT + eclipse-feature + [feature] Acces-Analysis to CodeQL + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.project b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.project new file mode 100644 index 00000000..86fbb398 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.core.resources.prefs b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.settings/org.eclipse.core.resources.prefs similarity index 100% rename from bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/.settings/org.eclipse.core.resources.prefs rename to features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.settings/org.eclipse.core.resources.prefs diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml new file mode 100644 index 00000000..8e664768 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml new file mode 100644 index 00000000..add30428 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + features + 0.0.1-SNAPSHOT + ../.polyglot.pom.tycho + + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature + 1.0.0-SNAPSHOT + eclipse-feature + [feature] Access-Analysis to JOANA + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.project b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.project new file mode 100644 index 00000000..e96347ba --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.core.resources.prefs b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.settings/org.eclipse.core.resources.prefs similarity index 100% rename from bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis/.settings/org.eclipse.core.resources.prefs rename to features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.settings/org.eclipse.core.resources.prefs diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml new file mode 100644 index 00000000..c805aa3f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml new file mode 100644 index 00000000..9051b3ba --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + features + 0.0.1-SNAPSHOT + ../.polyglot.pom.tycho + + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature + 1.0.0-SNAPSHOT + eclipse-feature + [feature] Extended Dataflow-Analysis to CodeQL + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.project b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.project new file mode 100644 index 00000000..18223548 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.core.resources.prefs b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.settings/org.eclipse.core.resources.prefs similarity index 100% rename from bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/.settings/org.eclipse.core.resources.prefs rename to features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.settings/org.eclipse.core.resources.prefs diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml new file mode 100644 index 00000000..21ab5d20 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml new file mode 100644 index 00000000..a9c731de --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + features + 0.0.1-SNAPSHOT + ../.polyglot.pom.tycho + + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature + 1.0.0-SNAPSHOT + eclipse-feature + [feature] Extended Dataflow-Analysis to JOANA + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.project b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.project new file mode 100644 index 00000000..34031b1f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.core.resources.prefs b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.settings/org.eclipse.core.resources.prefs similarity index 100% rename from bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.core.resources.prefs rename to features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.settings/org.eclipse.core.resources.prefs diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml new file mode 100644 index 00000000..fe7d23b7 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/.project b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/.project new file mode 100644 index 00000000..b68d1d9c --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml new file mode 100644 index 00000000..47029a92 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/.project b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/.project new file mode 100644 index 00000000..cff2f391 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml new file mode 100644 index 00000000..07507de2 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/.project b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/.project new file mode 100644 index 00000000..64bbff37 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml new file mode 100644 index 00000000..538eafb6 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml new file mode 100644 index 00000000..47a4bd17 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + features + 0.0.1-SNAPSHOT + ../.polyglot.pom.tycho + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature + 1.0.0-SNAPSHOT + eclipse-feature + [feature] CodeQL-Execution + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index f8a6106a0ef025bca365625eba5ac747f0344de6..81def4662ef4f114df7634f7eac361a4403abf58 100644 GIT binary patch delta 383 zcmV-_0f7F@1@3IG5I008uZkqjjQ^n;NzfC%)15nI#g%FB_v8Glc20wEB^ z@B1k>++|%`Q`79~!RpCNllIi~Kw(tk2*{tV_R|*?bz`ch!img#?>E3yqwN~=Z?H~k zRg;o-Ne+r@A=RQL?{Cx2fQ*J&H3#N{g)BcTDQW^D(3SLb#heGEPHZUG!C*8}r-S7X zQ-CRkJ0~68A2tYE;K4@}O@DzTB_jI*tjRd4UT2-jNp>o?8;rZx?e)8Z@~M1$D9JF} ziz)$*TWR*LJlL4E^xixdMbk7Cwrp(>ViW74rHj^M{KrIju=(`ZQ~uJ5T7m`oc_6f{ z3CgwES-DvHyU4TZ8aO`NZz0dt1VqU}Ik<~UnrqlBS#P0|ErAS%g+Np(;a|R-T*8EI z6lx|qPX0hm`mK^w&NIY6D)(mKq6*3|zN*QbVSIuj-li(jtPQhYP)h*<6axwX00;m8 d^n;TU0yP5kgOf=DKnV1M5nI#g%FC0H0y~r9wDAA{ delta 383 zcmV-_0f7F@1@3IG5I005$5kqjjQqGFLVfC!>u5nHljnbVQG8Gk=-!Y~lU z_k4=TJ5E4CMO6X=g^8t7J5?QA`v?|?ZTzQ!e)<|P5TU|Ud$R7m_dDBHO?Dg1zri}G zRZaS|BsnOqg;Y&V-rwfE5t)p$Y6;8-3t4_#Qq%-Qplj*rnmG?ho!C;YgTZK|P6x{& zrT|k6_f9%`IBXGiz=Mw{ntuXGN<{VrSd(c~y)JsQv+P{%HW>Gy91P1*|EXUNN;1w4 zqDp|{R+@t=4>o44yf@E9(Y7sx9ora$*uG}>pfJmC6K|;NI;bm{^iTbHB9JM zp=P4zzXVX#wRG^ZK@*8+Bo|KP)h*<6axwX00;m8 dqGFR00yP4nVv|V%KnS8@5nHljnbVVz0z1UsrY`^h diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml index 57b848d3..9a6a614d 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202508171431"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202508171020" + version="1.0.0.202508171431" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index 66f29dbc..3c7ec449 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Aug 17 12:21:02 CEST 2025 +#Sun Aug 17 16:31:39 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index abb321df..81fdacbc 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index 91599a05..eafcba38 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml new file mode 100644 index 00000000..f47c49f9 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + features + 0.0.1-SNAPSHOT + ../.polyglot.pom.tycho + + edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature + 1.0.0-SNAPSHOT + eclipse-feature + [feature] JOANA-Execution + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml index 15b8031d..bb7bd330 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml @@ -1,7 +1,7 @@ diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index b8ff4d18af3b98c554129a72dbaf373c5d7663cc..8aa30d6d356f663335c673f520a2442016edd35a 100644 GIT binary patch delta 385 zcmV-{0e=3@1@3IG5I008uZkqjjQ^n;NzfC%)15nH(j_;QiE8Gk!(!Y~wt z_xy^;I}V{QR3$L9FjO7esp??t3%Fct*N+DJ>ubP3ghZy=i=}(c`L2CkjW=t|f51Aa zRZU9TCpjptg;a~0yuVF*Loyy^)f|`)7P5T5q^JpqKv&Y!6>}btI`K`p4hExo=BG&@%wY>ZlZZyt-HX&MR}wl)Z{y>-#jMe8B{W1>9Re0pdpe{MxB!2kSA*bqU4|)bmEfc684&`*HFopKnBA?szQ|T9|I@nETJ2P znu(s1zYu3ywrWy2&k&EL`&Oyz6P#5+8OB#NnKO)UP{iw0Mfz)_><>^&0Rj{Q3IG5I f008uZlN16q0`!BEO9DU$^n(#wxd-@ilam5FSM{r5 delta 385 zcmV-{0e=3@1@3IG5I005$5kqjjQqGFLVfC!>u5nG=gEl82O8Gk=-!Y~lU z_k4=TJ5GpH6;%lgEeuu1cB(qK_5p4#w(CC)^wZaXfd~nv+KZ)o@BPj`*RxHB`43np zwQ9(imLvzowUBDnkhj;xXhLSwtX=~1!9termlO>F5ojwtZJG0c)QNA(bubu>)ahV3 z#1vqP;nqnUr&CZnv8>80Vn}?$4`<}vvbp|1}*A)X@v>xK$=gNc47l)Ser$N*jEYOcVVQ5WI zuFclU)!N@go>Z5>$CLdU@?=dwlpK_Uo4BO8guNu|HB_=CkioE$Dncdv$H2)sOXyyq zW@6;zFT|NvgPK&%GsI(QGAP~p1ZP!HhVix`ONQ|cig=y6NPlgb{Q*!*0Rj{Q3IG5I f005$5lN16q0-|D*O9DU$qGAzSpB^nplam5Fwy?1$ diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml index e40bc227..2434a535 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202508171431"> [Enter Feature Description here.] @@ -18,9 +18,9 @@ diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index 838a0114..813c8762 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Aug 17 12:21:02 CEST 2025 +#Sun Aug 17 16:31:39 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index 78fa9996..f44b7cc1 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index 0aa93b86..8e8df892 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/pom.xml b/pom.xml index 6cc91c7c..c4e8a8ba 100644 --- a/pom.xml +++ b/pom.xml @@ -8,14 +8,28 @@ pom - + bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - + bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana - + bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql + bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis + --> + + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification + + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator @@ -29,6 +43,19 @@ bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator bundles/Util bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation + bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences + features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature @@ -61,5 +88,20 @@ https://sdqweb.ipd.kit.edu/eclipse/palladiosimulator/nightly/ p2 + + sdq-commons + https://kit-sdq.github.io/updatesite/release/commons/ + p2 + + + confidentiality4cbse + https://kastel-scbs.github.io/updatesite/nightly/confidentiality/ + p2 + + + dataflowanalysis + https://dataflowanalysis.github.io/updatesite/release/ + p2 + From 0e5738fce2922b869671181a88b63bd7d3a57330 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Sun, 14 Sep 2025 14:42:54 +0200 Subject: [PATCH 19/25] feat: added framework projects to the update site --- .../META-INF/MANIFEST.MF | 4 +- bundles/EDFA/.project | 11 +++ .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 1 + .../META-INF/MANIFEST.MF | 4 +- .../META-INF/MANIFEST.MF | 1 + .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../.project | 17 ++++ .../build.properties | 1 + .../feature.xml | 25 ++++++ ...work.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 722 bytes .../target/feature.xml | 25 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 ++++ .../target/p2content.xml | 74 ++++++++++++++++ .../Partitioner.updatesite_feature/.project | 17 ++++ .../build.properties | 1 + .../feature.xml | 26 ++++++ ...oner.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 692 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 ++++ .../target/p2content.xml | 74 ++++++++++++++++ .../.polyglot.feature.xml | 15 ---- .../.polyglot.feature.xml | 15 ---- .../.polyglot.feature.xml | 15 ---- .../.polyglot.feature.xml | 15 ---- .../.project | 17 ++++ .../org.eclipse.core.resources.prefs | 2 + .../build.properties | 1 + .../feature.xml | 26 ++++++ .../.polyglot.feature.xml | 15 ---- ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 716 -> 717 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 70 ++++++++-------- .../.polyglot.feature.xml | 15 ---- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 718 -> 722 bytes .../target/feature.xml | 6 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 22 ++--- pom.xml | 79 +++++++----------- updatesite/.project | 2 +- updatesite/category.xml | 7 ++ updatesite/pom.xml | 5 +- 52 files changed, 495 insertions(+), 211 deletions(-) create mode 100644 bundles/EDFA/.project create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/.project create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/build.properties create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml create mode 100644 features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml create mode 100644 features/Partitioner.updatesite_feature/.project create mode 100644 features/Partitioner.updatesite_feature/build.properties create mode 100644 features/Partitioner.updatesite_feature/feature.xml create mode 100644 features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar create mode 100644 features/Partitioner.updatesite_feature/target/feature.xml create mode 100644 features/Partitioner.updatesite_feature/target/local-artifacts.properties create mode 100644 features/Partitioner.updatesite_feature/target/p2artifacts.xml create mode 100644 features/Partitioner.updatesite_feature/target/p2content.xml delete mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml delete mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml delete mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml delete mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.project create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.settings/org.eclipse.core.resources.prefs create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/build.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml delete mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml delete mode 100644 features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF index 8d92e973..5f6eaba6 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF @@ -6,7 +6,7 @@ Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.pcm2java Bundle-RequiredExecutionEnvironment: JavaSE-11 Require-Bundle: org.palladiosimulator.pcm, - edu.kit.kastel.sdq.coupling.models.java;bundle-version="0.1.0", - edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="0.1.0" + edu.kit.kastel.sdq.coupling.models.java;bundle-version="1.0.0", + edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="1.0.0" Export-Package: edu.kit.kastel.sdq.coupling.alignment.pcm2java, edu.kit.kastel.sdq.coupling.alignment.pcm2java.utils diff --git a/bundles/EDFA/.project b/bundles/EDFA/.project new file mode 100644 index 00000000..e1a955ef --- /dev/null +++ b/bundles/EDFA/.project @@ -0,0 +1,11 @@ + + + EDFA + + + + + + + + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF index 14caa48e..f560eece 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: Codeql2accessanalysis Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis;singleton:=true Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis -Bundle-RequiredExecutionEnvironment: JavaSE-15 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: edu.kit.kastel.sdq.coupling.models.java;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.models.codeql;bundle-version="0.1.0", com.google.gson;bundle-version="2.8.2", diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF index 64be3123..8d7e51a9 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF @@ -11,5 +11,6 @@ Require-Bundle: edu.kit.kastel.sdq.coupling.models.java, edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator, edu.kit.kastel.sdq.coupling.models.codeqlscar, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences +Import-Package: edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar Bundle-RequiredExecutionEnvironment: JavaSE-11 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF index f4302140..9b61af98 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF @@ -18,6 +18,8 @@ Require-Bundle: edu.kit.kastel.sdq.coupling.models.java, edu.kit.kastel.sdq.coupling.models.joanascar, edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences, - edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences + edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences, + org.dataflowanalysis.pcm.extension.dictionary.characterized, + org.eclipse.emf.ecore Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis Export-Package: edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/META-INF/MANIFEST.MF index c47da113..b6cec2c6 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar/META-INF/MANIFEST.MF @@ -27,6 +27,7 @@ Export-Package: edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2sc org.yaml.snakeyaml.serializer, org.yaml.snakeyaml.tokens, org.yaml.snakeyaml.util +Import-Package: edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences.util Require-Bundle: edu.kit.kastel.sdq.coupling.models.joana, edu.kit.kastel.sdq.coupling.models.joanascar, edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/META-INF/MANIFEST.MF index 046dac2f..d960145c 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF index ed976111..e5fd176d 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF index c86265d7..2c21a402 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF index e7c713a3..48a157a0 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Export-Package: edu.kit.kastel.sdq.coupling.models.java, +Export-Package: edu.kit.kastel.sdq.coupling.models.java;version="1.0.0.qualifier", edu.kit.kastel.sdq.coupling.models.java.impl, edu.kit.kastel.sdq.coupling.models.java.members, edu.kit.kastel.sdq.coupling.models.java.members.impl, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF index f336ab1c..0e27a779 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.joanaresultingvalues;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.joanaresultingvalues -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF index 9c6cc278..d6dfe914 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.models.joanascar;singleton:=true Automatic-Module-Name: edu.kit.kastel.sdq.coupling.models.joanascar -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/.project b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/.project new file mode 100644 index 00000000..94b745d2 --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/.project @@ -0,0 +1,17 @@ + + + ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/build.properties b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml new file mode 100644 index 00000000..52cf8c91 --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml @@ -0,0 +1,25 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..b8d934a9f1f92145fb20a69459f8b3ad398a941c GIT binary patch literal 722 zcmWIWW@h1HVBlb2*jS<$&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy^Wa`HK}6 zj0_B)nHU(jfi6f(O)M!bO4X~#&FP&K>wm~Vr0xB8?P>Sk3mar?6KpDaI=3p7XXV?8 zre(R8%lQ6$71JJBvz_tT)@6Mr<}sVqO8duQfjI|v zTs!o60(;RPzCY&1MHgOp^nSbXqGxyem;HzCR?h0bbUSCp(`M-q*4Y7$2L;YfDc!i? z>bZ#M)$b-PdA&;_Y)7C>lG5xY(~Gal{`=|}ap7T2`KJ&2+E+O`|Ji2xWp$j_lBn!$ zYu<)FRV>w-Bl~Lll=fBPMQ#ofJ63(38GLi``naHCODm^8YQX^?mLVmVld_ zdWO9`zuSa(-5=kZz?p3Lyw21z;!x zfdIo>M-YvaGCQG9pKH%29jh3 N!c9P$3z!%f7ywR`1PA~C literal 0 HcmV?d00001 diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml new file mode 100644 index 00000000..6a3df3bd --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml @@ -0,0 +1,25 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties new file mode 100644 index 00000000..37eeb8be --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Sun Sep 14 14:37:32 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml new file mode 100644 index 00000000..409d5cd6 --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml new file mode 100644 index 00000000..941c19f1 --- /dev/null +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/Partitioner.updatesite_feature/.project b/features/Partitioner.updatesite_feature/.project new file mode 100644 index 00000000..66bf5a09 --- /dev/null +++ b/features/Partitioner.updatesite_feature/.project @@ -0,0 +1,17 @@ + + + Partitioner.updatesite_feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/Partitioner.updatesite_feature/build.properties b/features/Partitioner.updatesite_feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/Partitioner.updatesite_feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/Partitioner.updatesite_feature/feature.xml b/features/Partitioner.updatesite_feature/feature.xml new file mode 100644 index 00000000..eed205e4 --- /dev/null +++ b/features/Partitioner.updatesite_feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..b004f7617a1fea65b55080e38edc325b7fbf8aca GIT binary patch literal 692 zcmWIWW@h1HVBlb2*jS<$&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy`t|`$v{i zj0_A@m>3wifi6f(O)M!bO4X~#&8eMqI_R*1NZa>HuD06ACfjaVc zg|7ssfrHQ2mrHefBXSde#_u~U)Ae-O;}^_Z5`(5xNG+FWT%nq}Nb}?6$61>WoYvC1 z=8&^q(P{VLj86HEZD)3gyx0*wCBop$q1EO|@1H#3{h|Nak#pv|v`jPq&o6Uk#l}3+ zx;2Z7YuPoQ+~O72*Dc!`7OQ^JfX6V$W4XnVt#2kBc)sZOujkf@j*G9>$&^TkY+ayO zcT@1tiuP+kwOQA;eA6i^k!8+5_CxcD#8-!NSpsb59_@K9QTBfE@&LPMj$Pk*h4(#t zFZQwD>8ZjFm6D_z;yZX_pJpyFO4NDyN8#CL8-f4v+0*pWA|JeJRr*@pdA((KxN6=3 zrH}T@yY?{#cr!AIFyoGGU^oJS0K;2H5RDY~AZ@r~AEX!rmNcpZNw_wov;eUfVFG&W gfwcpPEsZOIBvM=kc(byBB$ + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/Partitioner.updatesite_feature/target/local-artifacts.properties b/features/Partitioner.updatesite_feature/target/local-artifacts.properties new file mode 100644 index 00000000..2a95736f --- /dev/null +++ b/features/Partitioner.updatesite_feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Sun Sep 14 14:37:32 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2content.xml diff --git a/features/Partitioner.updatesite_feature/target/p2artifacts.xml b/features/Partitioner.updatesite_feature/target/p2artifacts.xml new file mode 100644 index 00000000..cdc0a594 --- /dev/null +++ b/features/Partitioner.updatesite_feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/Partitioner.updatesite_feature/target/p2content.xml b/features/Partitioner.updatesite_feature/target/p2content.xml new file mode 100644 index 00000000..868b9239 --- /dev/null +++ b/features/Partitioner.updatesite_feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml deleted file mode 100644 index 196d74bb..00000000 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/.polyglot.feature.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - features - 0.0.1-SNAPSHOT - ../.polyglot.pom.tycho - - edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature - 1.0.0-SNAPSHOT - eclipse-feature - [feature] Acces-Analysis to CodeQL - diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml deleted file mode 100644 index add30428..00000000 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/.polyglot.feature.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - features - 0.0.1-SNAPSHOT - ../.polyglot.pom.tycho - - edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature - 1.0.0-SNAPSHOT - eclipse-feature - [feature] Access-Analysis to JOANA - diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml deleted file mode 100644 index 9051b3ba..00000000 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/.polyglot.feature.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - features - 0.0.1-SNAPSHOT - ../.polyglot.pom.tycho - - edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature - 1.0.0-SNAPSHOT - eclipse-feature - [feature] Extended Dataflow-Analysis to CodeQL - diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml deleted file mode 100644 index a9c731de..00000000 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/.polyglot.feature.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - features - 0.0.1-SNAPSHOT - ../.polyglot.pom.tycho - - edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature - 1.0.0-SNAPSHOT - eclipse-feature - [feature] Extended Dataflow-Analysis to JOANA - diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.project b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.project new file mode 100644 index 00000000..7022d68e --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.project @@ -0,0 +1,17 @@ + + + edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.settings/org.eclipse.core.resources.prefs b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 00000000..99f26c02 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/build.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/build.properties new file mode 100644 index 00000000..64f93a9f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml new file mode 100644 index 00000000..e5d13f29 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml deleted file mode 100644 index 47a4bd17..00000000 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/.polyglot.feature.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - features - 0.0.1-SNAPSHOT - ../.polyglot.pom.tycho - - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature - 1.0.0-SNAPSHOT - eclipse-feature - [feature] CodeQL-Execution - diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index 81def4662ef4f114df7634f7eac361a4403abf58..ea130162c78d75c6e6b6b7f63c636a79316c4a84 100644 GIT binary patch delta 396 zcmX@ZdX|+pz?+$ci-CcIfnj5b-b7v%W)Njk&k3ZWKX0m3GoH9dvfiJ`P~hnM-A-ZJnyNB=s`YQLA2E2pDildb9Jd%t~euWXww`s{wf+$*cp zRNqdL5xMTPs?zt~eYLsnMlvZ^d1mm7ZK~P7WCdr3!}Lp+Rg2{&SZ!Pu!`^(+V=mt` zXCKC85_xk=O3EXYa~jy?15H@#Cr#;i!@WUm@rtUsWyjoaZoHFc@Gfrq_4jsDzo))` z*T}PJ?h2s?JEo>RKh@kD$^HIpaiEE>bK>DJHbt|IT2Z?)Y>(9UOl6<#&u9Bof9(p^ zhz0Yjoo>%s5Hox2)X%N^J8f3#H7=g~SL#!Wufr6XDb2HYEZN!OJNc`W)=i-k2{XJM zrwaXhditcL&kMJOX^S2|;lHxvzLw`x8|OcZi?Z3yty;kI`1GtZ635gv9_6l5I(tju lH*0`5Ba;X-JYXjaGns%wcCr_fJtAl)Phv7*V`X9h0sz44uIc~) delta 395 zcmX@hdWMxZz?+$ci-CcIf#FND;6z>(W)Njk&k3ZWFTXr>+Gye)$@+XIMS-L5e`}iE zNsWyTzWnCZ!B;1}Cx5&0#UU}|5yy%7>%LtU7cEU*wfs=$nd@SVTHB?2c3*${b$9cpl{GaQ zCk<|QYccjkXMS5}b7RKVFZXQ3T`!x6Y|F_NND_X%XleJg + version="1.0.0.202509141236"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202508171431" + version="1.0.0.202509141236" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index 3c7ec449..e1de8ef1 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Aug 17 16:31:39 CEST 2025 +#Sun Sep 14 14:37:32 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index 81fdacbc..651b87c0 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index eafcba38..b819edc8 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,29 +1,34 @@ - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] @@ -33,35 +38,30 @@ [Enter Copyright Description here.] - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml deleted file mode 100644 index f47c49f9..00000000 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/.polyglot.feature.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - 4.0.0 - - TSE_Reiche_TransformationsAndModels - features - 0.0.1-SNAPSHOT - ../.polyglot.pom.tycho - - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature - 1.0.0-SNAPSHOT - eclipse-feature - [feature] JOANA-Execution - diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index 8aa30d6d356f663335c673f520a2442016edd35a..1316003076a3541bd6d89f93f2fbbb123d0792c8 100644 GIT binary patch delta 402 zcmX@ddWn@cz?+$ci-CcIfnj5b-b7v%W)Njk&k3ZWYwteXWHE7%M7_U1lcB)T_rEpG z_Fhg6?3@+L5ojT?Slm{Uf2-^Qqb*zOV?JDtUUHy~#c$hmwa@o{`&zGUTdn%+e!|=< ztJGBAPLdJ1?zAe>H!fanZnlw3%2kmW{9>E_SvEHP^W5fs^xL|6+wJb%*WbpL=ASyf zsr;gPbB^*V7K^;4H+OtWNWOBXx;R?I_i{kQ#-)xOZ*{w;=|ye-n4kRg;IqlO-al)# zv-reb{FYys>l?7{?5$Hb@63077kd1_?!A9Sit>FOrpQcb-n?UpWt*+qYt4{NsuSD~ z8cfzw{d4@lNk#7$ZVS^EJ$}M}WahNBvqH`pABkOgUu*7f7WUA9wvVp9%Xl73i+r>S qo%rvT!f)09Z$>5&W_a*U7G*L4h3{k^CVNBxPoBbL!p6nK00aPmP_S?S delta 398 zcmcb_dXAMhz?+$ci-CcIf#FND;6z>(W)Njk&k3ZWce4K|GMTtXqTV|Hkby|+_di`H ztoat|ho~BCF$j^pz4BGU8}1!3IoJEye!b2<;Lzf->{j>E>T^HW)yDRkXP>D*V6`&T z*Xx$LrN+9}knUM~_WM>l8_A_!m6^dWwy9?Sk`K8n>-uT^sNK)i$Y{qzy0<|?hAYQ-^8B*_wG$e znex_UD#P)$Cf4C{IXzKT`EuQhGNrhrx0!Kl+*^9_lIv^5f60q%Zq!s|Xx8Vs>KMO+Tn{)o&4KN((<onb lhCjfYkx7IZ9<-AsnM^=oJ2`;K9uc^cXE2$tu`w|K0RWu`tSbNj diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml index 2434a535..fe3f00e1 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml @@ -1,8 +1,8 @@ + label="JOANA-Execution" + version="1.0.0.202509141236"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution" download-size="11" install-size="16" - version="1.0.0.202508171431" + version="1.0.0.202509141236" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index 813c8762..f39b247e 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Aug 17 16:31:39 CEST 2025 +#Sun Sep 14 14:37:32 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index f44b7cc1..d4d664f2 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index 8e8df892..0b6ad25c 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,9 +1,9 @@ - - + + - + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,9 +33,9 @@ [Enter Copyright Description here.] - + - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/pom.xml b/pom.xml index c4e8a8ba..c7ed2d05 100644 --- a/pom.xml +++ b/pom.xml @@ -12,53 +12,15 @@ bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - - + + features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature + features/Partitioner.updatesite_feature - bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar - bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar - bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification - bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification - - - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql - bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils - bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence - bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator - bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana - bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator - bundles/Util - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences - bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation - bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues - bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences - - + features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature + + updatesite @@ -73,11 +35,12 @@ + - maven-central - https://repo.maven.apache.org/maven2 + ecore + http://download.eclipse.org/ecoretools/updates/nightly/3.1.x/neon default - + eclipse-2023-09 https://download.eclipse.org/releases/2023-09 @@ -100,8 +63,28 @@ dataflowanalysis - https://dataflowanalysis.github.io/updatesite/release/ + https://dataflowanalysis.github.io/updatesite/release/dataflowanalysis/v1.0.0/ p2 + + dataflowanalysis-pcm-extension + https://dataflowanalysis.github.io/updatesite/release/pcm-dataflowanalysis-extension/v5.2.0/ + p2 + + + framework + https://cascade-analysiscoupling.github.io/updatesite/framework + p2 + + + partitioner + https://cascade-analysiscoupling.github.io/updatesite/partitioner + p2 + + + maven-central + https://repo.maven.apache.org/maven2 + default + diff --git a/updatesite/.project b/updatesite/.project index 6fd25c5b..6af95df0 100644 --- a/updatesite/.project +++ b/updatesite/.project @@ -1,6 +1,6 @@ - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.updatesite + edu.kit.kastel.sdq.coupling.updatesite diff --git a/updatesite/category.xml b/updatesite/category.xml index 880f60ce..e453594d 100644 --- a/updatesite/category.xml +++ b/updatesite/category.xml @@ -6,5 +6,12 @@ + + + + + + + diff --git a/updatesite/pom.xml b/updatesite/pom.xml index 09aa6dba..93516091 100644 --- a/updatesite/pom.xml +++ b/updatesite/pom.xml @@ -5,8 +5,7 @@ TSE_Reiche_TransformationsAndModels 0.0.1-SNAPSHOT - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.updatesite - edu.kit.kastel.sdq.coupling.sourcecodeanalysis.execution.updatesite - 0.0.1-SNAPSHOT + edu.kit.kastel.sdq.coupling.updatesite + edu.kit.kastel.sdq.coupling.updatesite eclipse-repository From 16f785eb24021feef76a3a498e16f8bfec2e52c4 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Tue, 16 Sep 2025 09:30:01 +0200 Subject: [PATCH 20/25] feat/fix: fixed compile errors, added first half of transformations to the update site --- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 3 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 3 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 3 +- .../META-INF/MANIFEST.MF | 2 +- .../.classpath | 6 +- .../.settings/org.eclipse.jdt.core.prefs | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../pom.xml | 25 +++-- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 4 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 9 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 9 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../build.properties | 6 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 7 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../build.properties | 9 +- ...work.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 722 -> 723 bytes .../target/feature.xml | 2 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 70 +++++++------- ...oner.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 692 -> 691 bytes .../target/feature.xml | 2 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 16 ++-- ...analysis2codeql.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 725 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ ...sanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 728 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ ...wanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 737 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 729 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ .../feature.xml | 2 +- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 738 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 730 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 739 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 +++ .../target/p2content.xml | 74 +++++++++++++++ ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 717 -> 716 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 18 ++-- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 722 -> 722 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++-- pom.xml | 87 +++++++++++++++--- updatesite/category.xml | 25 +++++ 106 files changed, 1099 insertions(+), 224 deletions(-) create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/META-INF/MANIFEST.MF index 25bfc414..59a1ea12 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/META-INF/MANIFEST.MF @@ -6,7 +6,7 @@ Bundle-Version: 1.0.0.qualifier Export-Package: edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils.filehandling, edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils.templates Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.google.guava, org.eclipse.xtext.xbase.lib, org.eclipse.xtend.lib, diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF index 4f8bd106..8d639791 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/META-INF/MANIFEST.MF @@ -6,7 +6,7 @@ Bundle-Version: 1.0.0.qualifier Export-Package: edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator, edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.codeqlgenerator -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.google.guava, org.eclipse.xtext.xbase.lib, org.eclipse.xtend.lib, diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/build.properties b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/build.properties index 34d2e4d2..d8e2f0e9 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/build.properties +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/build.properties @@ -1,4 +1,5 @@ -source.. = src/ +source.. = src/,\ + xtend-gen/ output.. = bin/ bin.includes = META-INF/,\ . diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/META-INF/MANIFEST.MF index d58b55c0..5bf71537 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: Javacodegenerator Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: edu.kit.kastel.sdq.coupling.models.java;bundle-version="0.1.0", com.google.guava, org.eclipse.xtext.xbase.lib, diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/build.properties b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/build.properties index 34d2e4d2..d8e2f0e9 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/build.properties +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/build.properties @@ -1,4 +1,5 @@ -source.. = src/ +source.. = src/,\ + xtend-gen/ output.. = bin/ bin.includes = META-INF/,\ . diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF index bc63a5f4..fc56b1bd 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: Joanacodegenerator Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.google.guava, org.eclipse.xtext.xbase.lib, org.eclipse.xtend.lib, diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/build.properties b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/build.properties index 34d2e4d2..d8e2f0e9 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/build.properties +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/build.properties @@ -1,4 +1,5 @@ -source.. = src/ +source.. = src/,\ + xtend-gen/ output.. = bin/ bin.includes = META-INF/,\ . diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF index 5f6eaba6..6311bcbe 100644 --- a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: Pcm2java Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.pcm2java Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.pcm2java -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.palladiosimulator.pcm, edu.kit.kastel.sdq.coupling.models.java;bundle-version="1.0.0", edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="1.0.0" diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath index 2fbb6020..5050774b 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.classpath @@ -1,12 +1,12 @@ - + - + @@ -17,5 +17,5 @@ - + diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs index d089a9b7..ac772f96 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/.settings/org.eclipse.jdt.core.prefs @@ -1,11 +1,11 @@ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=15 +org.eclipse.jdt.core.compiler.compliance=15 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled -org.eclipse.jdt.core.compiler.source=17 +org.eclipse.jdt.core.compiler.source=15 diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF index 9b61af98..9ee14443 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Joana2extendeddataflowanalysis -Bundle-RequiredExecutionEnvironment: JavaSE-15 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis;singleton:=true Bundle-Version: 1.0.0.qualifier Require-Bundle: edu.kit.kastel.sdq.coupling.models.java, diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml index 9e3db314..c3c727b0 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis/pom.xml @@ -1,18 +1,15 @@ - + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../ + edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis - 0.0.1-SNAPSHOT - - src - - - maven-compiler-plugin - 3.8.1 - - 17 - - - - + 1.0.0-SNAPSHOT + eclipse-plugin \ No newline at end of file diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/META-INF/MANIFEST.MF index d41d85db..bead5f28 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: Joana2accessanalysis Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis;singleton:=true Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.ui;bundle-version="3.118.100", edu.kit.kastel.sdq.coupling.models.joana;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="0.1.0", diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/build.properties b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/build.properties index 63e18885..e9863e28 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/build.properties +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis/build.properties @@ -2,6 +2,4 @@ source.. = src/ output.. = bin/ bin.includes = META-INF/,\ .,\ - libs/,\ - plugin.xml,\ - libs/snakeyaml-2.2.jar + plugin.xml diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF index 64d15315..53e5e9fb 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.codeqlresultingvalues, edu.kit.kastel.sdq.coupling.codeqlresultingvalues.impl, edu.kit.kastel.sdq.coupling.codeqlresultingvalues.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF index 1755faed..93e820e5 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation, edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation.impl, edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/build.properties index 697ca964..9f3f104f 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation/build.properties @@ -1,10 +1,7 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ - plugin.properties -jars.compile.order = . -source.. = src-gen/ -output.. = bin/ + plugin.properties \ No newline at end of file diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF index bacf58f6..d74066f5 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.codeql, edu.kit.kastel.sdq.coupling.models.codeql.impl, edu.kit.kastel.sdq.coupling.models.codeql.supporting.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/build.properties index 697ca964..9f3f104f 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql/build.properties @@ -1,10 +1,7 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ - plugin.properties -jars.compile.order = . -source.. = src-gen/ -output.. = bin/ + plugin.properties \ No newline at end of file diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF index d06a0227..4b1df6a1 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.codeqlscar, edu.kit.kastel.sdq.coupling.models.codeqlscar.impl, edu.kit.kastel.sdq.coupling.models.codeqlscar.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF index c897a1cf..52a529b3 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.accessanalysiscodeqlcorrespondence, edu.kit.kastel.sdq.coupling.models.accessanalysiscodeqlcorrespondence.impl, edu.kit.kastel.sdq.coupling.models.accessanalysiscodeqlcorrespondence.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF index 3df3a7a7..739dbcdd 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences.impl, edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF index f1da37f4..6e624772 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences.impl, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF index 044703a6..dee9165a 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences.Utils, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences.impl, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF index e5fd176d..47ba5b77 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences.impl, edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences.util diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF index 2c21a402..4104400a 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences, edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences.impl, edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences.util diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF index ab3c7fc1..22863e54 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.identifier, edu.kit.kastel.sdq.coupling.models.identifier.impl, edu.kit.kastel.sdq.coupling.models.identifier.util diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF index 48a157a0..f7c8d211 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/META-INF/MANIFEST.MF @@ -21,4 +21,4 @@ Require-Bundle: org.eclipse.emf.ecore;visibility:=reexport, org.eclipse.core.runtime, edu.kit.kastel.sdq.coupling.models.identifier;bundle-version="0.1.0";visibility:=reexport Bundle-ActivationPolicy: lazy -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/build.properties index 0e10ab4f..ac0d644f 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java/build.properties @@ -1,10 +1,7 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties -jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF index 522eb8f7..4af373d9 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.joana, edu.kit.kastel.sdq.coupling.models.joana.impl, edu.kit.kastel.sdq.coupling.models.joana.supporting.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/build.properties index 0e10ab4f..75cc4f46 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF index 0e27a779..d6d53b94 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.joanaresultingvalues, edu.kit.kastel.sdq.coupling.models.joanaresultingvalues.impl, edu.kit.kastel.sdq.coupling.models.joanaresultingvalues.util diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF index d6dfe914..00be38c2 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Version: 1.0.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin -Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.joanascar, edu.kit.kastel.sdq.coupling.models.joanascar.impl, edu.kit.kastel.sdq.coupling.models.joanascar.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/build.properties index 697ca964..e74e3db4 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar/build.properties @@ -1,10 +1,8 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ plugin.properties jars.compile.order = . -source.. = src-gen/ -output.. = bin/ diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF index 8db10241..a9fa7a46 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/META-INF/MANIFEST.MF @@ -17,7 +17,7 @@ Require-Bundle: org.eclipse.emf.ecore;visibility:=reexport, de.uka.ipd.sdq.units;visibility:=reexport, edu.kit.kastel.sdq.coupling.models.java;bundle-version="0.1.0";visibility:=reexport Bundle-ActivationPolicy: lazy -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence, edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence.impl, edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence.supporting.util, diff --git a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/build.properties b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/build.properties index 697ca964..9f3f104f 100644 --- a/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/build.properties +++ b/bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence/build.properties @@ -1,10 +1,7 @@ -# - +source.. = src/,src-gen/ +output.. = bin/ bin.includes = .,\ model/,\ META-INF/,\ plugin.xml,\ - plugin.properties -jars.compile.order = . -source.. = src-gen/ -output.. = bin/ + plugin.properties \ No newline at end of file diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar index b8d934a9f1f92145fb20a69459f8b3ad398a941c..fbff20b1c3e3f8532dc1bc97afd13ea3e92a67c3 100644 GIT binary patch delta 391 zcmcb_dYP3sz?+$ci-CcIfuYUYU?Q&yGl(*&=LAyGU)c9-vz)j`rM_9SBTZT{c-@}h z^*n}KZ8sfTmwW46(zaAemmD!DWy_oy^_3GJy=~(3|8YNV!)2Sj z4(tq5=ROd+d}2es#)Yp1cchIHb)MZh-`2eP-kbOJ^Oq*Od)&$Vd?Y_c@()9RHzSh> eGdxTuOEQ^&0(Ei#lRY9-C(mFqVdG|E00IDmfvVR4 delta 390 zcmcc2dWn@cz?+$ci-CcIfnj5b-b7v%W)Njk&k3ZW6U<+%u$Z_y-=q#iHHPChcNBbDiys&$ce>Gck|ZtXA4T z4hzgVxZ~QP&lA{-{_y=VH!iwR|H7m9+l?1JyW79)KXkWpR{y2jIWwL%ONX$|4sbju zaCS=R#tm1`MMSTDH)+Z1T@qnC0%ekvW-pmud{y?}SI3A84{ORlec0E&%F+4HHq$Sw zhsLtn~T@S1^t{Qu6a*y=7*O5Z&|JH zTXUDN1l;7*GwkL0-6q8A{`lSm&Sb;qb!Mm7_TIez-_HMd--I2P#X9fr(E7m`;LXS+ f!VC}6$x=)vpfH^r$YhTQ)X6iMOxU=X7=Qo(ulKaE diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml index 6a3df3bd..87f02e75 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160726"> [Enter Feature Description here.] diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties index 37eeb8be..19e759bd 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Sep 14 14:37:32 CEST 2025 +#Tue Sep 16 09:28:11 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml index 409d5cd6..68787bfd 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml index 941c19f1..09d11956 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml @@ -1,34 +1,29 @@ - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar index b004f7617a1fea65b55080e38edc325b7fbf8aca..ead2abb9125abf3952adc19101c90d3a6bee12cf 100644 GIT binary patch delta 358 zcmdnOx|x+Xz?+$ci-CcIfuYUYU?Q&yGl(*&=LAyGiVrPvHt2~;? delta 359 zcmdnYx`mZDz?+$ci-CcIfnj5b-b7v%W)Njk&k3ZWE#5z}l$y9lwSLIkeh5>HU)@yg&3mJ95r^mzHVf|M_Lk ztk{@GTDN9#aV@*%lUuyv`nqLX>%(HzPa5zT=6Ec(II{K4qyx_v{r>gbI?-|Q)jF9H z>5#1p6zgsZ9$L|UEvPo@+LmuRMJ2M#`Nw`}K9Tt9a4t)L?cAe1&n3# + version="1.0.0.202509160726"> [Enter Feature Description here.] diff --git a/features/Partitioner.updatesite_feature/target/local-artifacts.properties b/features/Partitioner.updatesite_feature/target/local-artifacts.properties index 2a95736f..d3d5af59 100644 --- a/features/Partitioner.updatesite_feature/target/local-artifacts.properties +++ b/features/Partitioner.updatesite_feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Sep 14 14:37:32 CEST 2025 +#Tue Sep 16 09:28:11 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2content.xml diff --git a/features/Partitioner.updatesite_feature/target/p2artifacts.xml b/features/Partitioner.updatesite_feature/target/p2artifacts.xml index cdc0a594..6ee39676 100644 --- a/features/Partitioner.updatesite_feature/target/p2artifacts.xml +++ b/features/Partitioner.updatesite_feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/Partitioner.updatesite_feature/target/p2content.xml b/features/Partitioner.updatesite_feature/target/p2content.xml index 868b9239..8dc2673b 100644 --- a/features/Partitioner.updatesite_feature/target/p2content.xml +++ b/features/Partitioner.updatesite_feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..cae46cecbbbf4291a8687c5ccbcbc0f3d30c9763 GIT binary patch literal 725 zcmWIWW@h1HVBlb2nCNW~&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy|^seD-E* zMh1q@ObiU%Ko_K?CYF>IrRr7W<}97GH}8;vh}(CY)~B-1-L;m6GC6JW(V2Q{<*S4@ z-Wzsobbe!UVflJSaV3?ASv}ut?(g)Q<6kB^DL-S4(XIuW-WrU$Jt4bvUL5~jW3Xs) z;gt0aySFuV$jGa5b8SkMetM%Vn*GF@J4T7Oq-rM=hAds@V12BWA$#Yu9otW(?UUGc z!bzI9^u+WA*12*w4w`H@B5Cyb$L&Y_uk&Bt*EuOSX?e*En>1&uKE43GgI#V{&m}L( zt$BWH=P%2?-RqJ!JPz%Buzk%Vx#x?Q|2iN3c7fvO%Xv?hhHq_SyK(*Eg?_e`24D9D zKD~7}bl%GBhi_!|FST)R7MRMA`*59}!Szk99ruD-BLuGAnC8{q_Wyr*Rpz8+mos+A zM0{mtJ?pl2=A~w7y08&!|Q~&?~ literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml new file mode 100644 index 00000000..d0e30062 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties new file mode 100644 index 00000000..0c8bd5bd --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:33 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml new file mode 100644 index 00000000..076909ab --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml new file mode 100644 index 00000000..2806a6ef --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..0e0bdd766274da2174ad87213a788fa8908cf8cb GIT binary patch literal 728 zcmWIWW@h1HVBlb2nCNW~&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy`r<%k!^x zj0_APnHU(jfi6f(O)M!bO4X~#%~?9h(f^QvMBDq{qQ37-k_AOJJBm$hHmtfh`D4KC z{=k>FZk6%<`5Lxj!-NAz-)?$Reee6vZChuomG0bkz-nP=XS>Q_4w1_-D|Q{xKmYll z=se%aNsL#viwSMn%c5`iVcMD&b?sL+9*=&gC+;#eV&R;+D2!LbUnBW}OlU~noPwY2 zeEllZ9^O!UX?;Q{Jh~*nRjji2-TYO@U-7@zmwab)+WlsV#W}sthV#_+2OKpo3c-F4YYiGaPLJ^)R&6{_fkU1@v^ks_Hu|+3NY!lNm`}2GIV`stZb0^LE z)F^yE;8FJ;bKz5!TB$O;?vwAmxg%&1u-0hGTCY6|jA|N9_V`RZrflw82MlILCJ|=b zDFPVQKp?>I))7P_r4Nuc+$jX47zCCyssl;5Hl*|du^3?jdJKcL1Boq-D}f|Zd + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties new file mode 100644 index 00000000..18506b7f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:33 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml new file mode 100644 index 00000000..d41b319b --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml new file mode 100644 index 00000000..2b885a2f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..35ec71aea0328659bc4891f704d350dece4ac0fd GIT binary patch literal 737 zcmWIWW@h1HVBlb2nCNW~&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy|^(u3$fR zMg|4}W(EdspbOGc6H7{qQuQiwbJk9B^gm=E(f0ngsPFrdWsuKL%Xy z5Bz!U+ScL+>$f{KwzBx;O;^4Dd(ZjnOK+wGEB`Q;xo3zfDiB3EtWyb>sKB z3$D#uE~G`DE_%97tAAzj!@q+2m)ISYGkl50= Y5=bINe1JDA8%UBF2sZ&~NhS~v05R78bpQYW literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml new file mode 100644 index 00000000..f757d3e8 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties new file mode 100644 index 00000000..3d22219b --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:33 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml new file mode 100644 index 00000000..9a9c7392 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml new file mode 100644 index 00000000..87642279 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..94af076b97efb73dd4237290d673a4d87a0b494f GIT binary patch literal 729 zcmWIWW@h1HVBlb2nCNW~&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy|_GAkSud zMh1p|ObiU%Ko_K?CYF>IrRr7W=B%BxG4GIpi0k*7)~B-SE?P@NnVh!x=uEw}@>Rkc z_8m4k$=0mDzM4L`#KE~tE&ATh?|W3%we2>Yq+bvx8GBhzTZ2)zC!{Ly^7iYV%l+G% z*UVz(?``gp(O1pp+LWj*dZX(%!-+k23=*Zf4Ns)StXX3`U%_cj?|Idn4NsgJzQ+{b zseT%{YRO9BpFA6uJwCC|$I~FC$Q4YLOuC?rc44$)Ov2 zgS%6Ath5Q9e(0lRoo{8InxYott;4>tNqVW5MfNW9+NiSWhRzf}-v3{|zl@)265ZQ& zx-a~Gz~xODXQzB?R9+Ui{l)gQ?RiHA?0>hb+NrV}9 zk^lxa5C|~5bp+8!2?V4KcM<_927x7w>Oc~%4JpAuEJm1s9>rkoKw?YdN+5|8;Q`*P SY#>QyAlw9`1%YXTfdK&AsQVlM literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml new file mode 100644 index 00000000..4c925e6e --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties new file mode 100644 index 00000000..844b5ec0 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:33 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml new file mode 100644 index 00000000..5f3f88ec --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml new file mode 100644 index 00000000..4470b6a1 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml index 07507de2..bf3dede7 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml @@ -1,7 +1,7 @@ diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..dd5c0eccfc9cab559627ac1d65b8527be7f34ec3 GIT binary patch literal 738 zcmWIWW@h1HVBlb2nB;8`&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy|_LsXbC2 zj0_Ai%nS_NKo_K?CYF>IrRr7W=B%A$n}5hapzZq~uG7|j9U)wyOsjs(h|t;^eD&ZF z_8l_YHqK@H^*Vb6x1f-Z@3uR(?~BXUNxa?evG0J@%23bUI*VCCmbQkhp0sc8IjdSL zDYc_QJJ#!}Jo(}g7$jhN+vB|1ol1viNBTl{nMpWodvNtw#9z*-{2L$cZjgPp;rjv> zj)S)Gi}H3nswlX$QNl0T>Jw{%=kdm>nZoN&nlz;dojh0U@_)iN#zV8ye>$7J__pcz z9{2W>8&?WE(9%9zs1S5}!v1gfY?fwTHsSeJlPz#)!R;+q#V_3d@qOi|gp+T|{fshQ z*B)g0Z6SFpV@lX9nKdzM|HeMu`8vwN?(z01=_Xu(VGCsLTs=B3`=-sJ?ID8QO3h!r zR?YbEUfWUspp!Y5skp5Ae#Jiz99OGN{VZcR?bqJ0m-pOac4eg=icyU%;t`+Jwpldu z&auQ#%mLnvOd`y<(*`iqfk1%ats{s=N+}?1xYG(qF$gSaR0oo9ZAd8xVll!5^tc9V d2NGKvR{}|-m=Ew~Wdlhv1K}nhEyV=l0RTm012O;r literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml new file mode 100644 index 00000000..9b264480 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties new file mode 100644 index 00000000..d269f642 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:34 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml new file mode 100644 index 00000000..0a6bd376 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml new file mode 100644 index 00000000..9b199e05 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..43f3f44ce725cc193e65d6f439c6c4c9f70e0461 GIT binary patch literal 730 zcmWIWW@h1HVBlb2nB;8`&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy^W0hLxTJ zBLl;4CI$v>pbOGc6H7{qQuQiwbJkAs&Sz2-Y5o3Lo1=QB`=Z(uH{;CLi!yKd?#|lf zutTfMq48x#eQjW%y4o(S9FKRF&vzftb$>n8#Xe!~g;j?vPZ}^CH4)DWd)WWI@V!`n zo2Mn~D`{@dTe=6edG;uJKRh|fihq*DKi?U7Jv?qk3v)8p#4&tUoTg(Ex@AF6WAQ^3 zb3Y3q;liFNB}|(RozMT8-Mh!_tKZ$#i~lIRE|V&oDEjw}o_vb=Q3n3WYgasZFhexW z+pU*(X7T&8wX?S6dMEgXyE(lmnOatIa998TnjkqHsrS{+{c~4XMkvHvJ6)Gr=rg-l zbo0*rT{f%EHS)XvR(*0&sxinQfN$NSMbBiu39X$Ta8bTmLUdrM|cNUzbt*I))7P_r4W!d+-U@)7zCCyssl;5Hl!2-u^3?jdK`nb1Boq-D}f|Zj0bqL SvVkO-fp8O$76K*;1_l7rcJgTe literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml new file mode 100644 index 00000000..5d335a4f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties new file mode 100644 index 00000000..009e27bf --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:34 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml new file mode 100644 index 00000000..223920f6 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml new file mode 100644 index 00000000..ee20282b --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..7e750734dc5d202b8b64bf967d892a70b38b0b59 GIT binary patch literal 739 zcmWIWW@h1HVBlb2nB;8`&42_rfoxyb5Jz24KR5jVpfVAlG7hjZr;eSk1Ax;0KnxT` zDD!pn^K^3!4$<><`|Nw>w2!y0-bG$-U9EFx&TkGfxMKX^X_20nua2kh#nM$*O_FJr7^DEaT@-A3bGaKy|^3UQSL= zMg|5+W(EdspbOGc6H7{qQuQiwbJk8en14t?;^_Oo+8pJXxn|3~R~rWNpWYO^ZSqaV zhrxj?Y$aF!esxa0HRDC*mt)`S-rLSvFOg#|RNGwYv|4DpXPcnLvYi3lLiKz6qhf7d zs2`PCv0g{zMFESx;fJm@t?JpYY&;(Q5Kr7?WYm!2cJo%mUZ!Wwx{;ZyGWeqTyO^I} zxxDjA>5j?P>N1`8EM|FIF-JanzWw2Afy&-v6P*`xY-^kNM|sxQ!_(7$)?Ujl-_*XR z`S;1Vkb;6UT$|T7Ye~PEesA`1leMpB9hjEa(-KfW*{p=o_Ll$gQ_ZfElYLFHB6JTj z{j^arxhQdJ%gxA*5x-_nRKJ?~;4R#=UUS z;d*@*yWd5z+AB5lEk81=o_jB4yl~F)pksmSZ%f>b>e#$0NbQQ&$2q4y*kAgvMX7i9 z4gWgE0B=Sn5oX+p0~qW;Ai(g}5kw;;6_7UEi3Ow>1eP?a14+0xq@)9}7-0f>WP`N> bi7kyQfh1DY2Y9oxfh3uMa1)T0W&-g5DUtpI literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml new file mode 100644 index 00000000..db92f809 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties new file mode 100644 index 00000000..f2936cab --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Tue Sep 16 09:28:34 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml new file mode 100644 index 00000000..30d5ef21 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml new file mode 100644 index 00000000..5d671d4a --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index ea130162c78d75c6e6b6b7f63c636a79316c4a84..1b1a19a6222e6dbc822e0f438a616431e86cc77d 100644 GIT binary patch delta 396 zcmX@hdWMxZz?+$ci-CcIfnlPz!9-paW)Njk&k3ZW5%HeiR=N3Ii#7yte0>NMxg+Z$g08T*EYN=Wvdfa+WA2TBbz8{r;;xrXM7HJR3M2`?UbM9PTJoRcE|nX8ez_6+?^0J( z6YH-^g)M72Pi?&!xijL|?h~6|Nm)cZ%)jimOPOxH7mb=4!*zEP6|0^e8gVsd)k9VT&E27tvWd;v8GAs-ZHIAYj`)u k2Y53wi7>+hcCrYQ2`FSIdo$T1f_Cy`CKEOmCI%n?0J=u3wg3PC delta 397 zcmX@ZdX|+pz?+$ci-CcIfnj5b-b7v%W)Njk&k3ZWKX0m3GoH9dqTb)1$xz_v``?;o zdoQO3_RNa4P?)o0#*32`E8a5jI!FIH&T7Axl`E&CV3V!s=X<|>Z?9~dE&A+!!rUvX z)KuS2k`cM?w5rng-hH*X?nW{xS9xaei*2gezhnhxhr{$smsN}9CRlA;7Q^0r(PJ*( zG-n^iWfFOFOG?Tklye%`T42Ro*wJwMgl8_E6tY;mB8uXEzzFg8WAjapH=GHj33_e^DNPH&{8#Ezim$^InJLY)cP!c2;yd}Pl-5n56A3e% zyr&BNdwTk$rOykug=vc(KjFW!GdyG`3p1I3f_AbOlRYAACr@HBVPj=t00ICz9j`e6 diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml index 35bcb003..24c67362 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160726"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202509141236" + version="1.0.0.202509160726" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index e1de8ef1..8a199953 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Sep 14 14:37:32 CEST 2025 +#Tue Sep 16 09:28:33 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index 651b87c0..bc9b50f0 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index b819edc8..dca057e6 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,6 +1,6 @@ - + @@ -11,15 +11,15 @@ - + - + (org.eclipse.update.install.features=true) - + @@ -38,8 +38,8 @@ [Enter Copyright Description here.] - - + + @@ -51,11 +51,11 @@ - + - - + + (org.eclipse.update.install.features=true) diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index 1316003076a3541bd6d89f93f2fbbb123d0792c8..b5c65a1505a5e22e7a370d4347a5ee569f358a16 100644 GIT binary patch delta 393 zcmcb_dWn@cz?+$ci-CcIfnlPz!9-paW)Njk&jF;Oy(ceAp151G-rJwaP^9(yXKl5+ zmnA)pxTh(&BqsLcm88a8`NlNWJNkFQf%yDJCSjq7n|ZVD6rU@R|?;s@;bplYUSmF zMID+4L=JDA+*kLqqDAz>1LgY8Wj2$TCe|`td-5^$i_NQ^@2hIJ-i^DncT;)jy|Uj= zOV|6e-E<4#EV$#fx$x=1V=H!kf3{9z*0O~glDwM*Zbysh#%_7{=>G9j&1cnjPy5s! zc11?#Lci|9T;G6oXK$Ulc_-dQE@b(E-_3tzJ|*}%Op%$=+`VIoWvi{~Ys-*LsuSD~ z8cfzw{d4@lNki`!ZVS^EJ$|BpWM)~k>B>3j9lwM2hwl2q*|%x|&*Sb{K9a}GH6E3& lQu@2q@f&-9HzSh>Gdy%BOEQ^&f_HKNlRZ3qCr@Xx1_0fWxOxBp delta 393 zcmcb_dWn@cz?+$ci-CcIfnj5b-b7v%W)Njk&jF;OYwteXG;z0Ny}v(`p}^7izctPF zUQP|{oE6IvXd$s!+*Xo*tLy@!EnDkjK3tAoa-faHZ`*XW&-Z@&TCZ(et@`YK!rUvX z)KuS2k`cM?v?|g!E?#YJwvkNARgoF|Vw?Wtdj<*%H0mu`&i%|rq4ZIAkt~m!a;a4W zpCRjvq#b3KF8a&%Z(x$EQK`Q;#XU%26aRr(Ha7k9+~$7t+q!z&?e5*z-^P~apE|v% z{Gxhuj`AuNi@c>bcYI1nzH+C!I9kN_azMn!rH&nMb-SnOMQ#6>pZxUTv&p&MKWnwK z_{3iPmS33b8?f%|ty4Ge%y)ekdi=ody?;fD@_ikq$V_S8ykm)Fo2}Yw&5%v16Wk9P zOx9BUbNs+bMei4G3)2=oe!_ob=Crl5Le3c + version="1.0.0.202509160726"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution" download-size="11" install-size="16" - version="1.0.0.202509141236" + version="1.0.0.202509160726" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index f39b247e..a3b9eba6 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sun Sep 14 14:37:32 CEST 2025 +#Tue Sep 16 09:28:33 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index d4d664f2..5c212e58 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index 0b6ad25c..a1f2725e 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/pom.xml b/pom.xml index c7ed2d05..38ac709e 100644 --- a/pom.xml +++ b/pom.xml @@ -7,20 +7,69 @@ 0.0.1-SNAPSHOT pom - + bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution - + features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature - features/Partitioner.updatesite_feature - - + features/Partitioner.updatesite_feature + + + bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql + bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana + + bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis + + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification + + + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.java + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.pcm2java + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.identifier + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joana + bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator + bundles/Util + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysisjoanacorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfajoanacorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation + bundles/Metamodels/edu.kit.kastel.sdq.coupling.codeqlresultingvalues + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.codeqlresultingvaluescorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeqlscar + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanascar + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanascarcorrespondences + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.joanaresultingvalues + bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.correspondences.joanaresultingvaluescorrespondences + + features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature - - + features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature + features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature + + features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature + features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature + features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature + features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature + features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature + updatesite @@ -31,16 +80,26 @@ 2.7.5 true + + org.eclipse.tycho + target-platform-configuration + 2.7.5 + + p2 + + + linux + gtk + x86_64 + + + + - + - - - ecore - http://download.eclipse.org/ecoretools/updates/nightly/3.1.x/neon - default - + eclipse-2023-09 https://download.eclipse.org/releases/2023-09 diff --git a/updatesite/category.xml b/updatesite/category.xml index e453594d..66ab3d8d 100644 --- a/updatesite/category.xml +++ b/updatesite/category.xml @@ -12,6 +12,31 @@ + + + + + + + + + + + + + + From e59a80edac43c8800743cd78f94c3098be3c8486 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Tue, 16 Sep 2025 10:20:30 +0200 Subject: [PATCH 21/25] fix: added xtend-gen folders required for build to git --- .gitignore | 3 +- .../templates/ClassGenerationTemplate.java | 46 ++ .../templates/MethodGenerationTemplate.java | 30 + .../CodeQLTainttrackingCodeGenerator.java | 679 ++++++++++++++++++ ...CodeQLTainttrackingQueryCodeGenerator.java | 99 +++ .../templates/CodeQLQueryTemplate.java | 29 + .../CodeQLTainttrackingTemplate.java | 82 +++ ...lassOrInterfaceTypeGenerationTemplate.java | 248 +++++++ .../templates/MethodGenerationTemplate.java | 146 ++++ ...OANAClassOrInterfaceTypeCodeGenerator.java | 128 ++++ .../generators/JOANAMethodCodeGenerator.java | 53 ++ .../utils/JOANAStringUtil.java | 236 ++++++ 12 files changed, 1777 insertions(+), 2 deletions(-) create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/ClassGenerationTemplate.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/MethodGenerationTemplate.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingCodeGenerator.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingQueryCodeGenerator.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLQueryTemplate.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLTainttrackingTemplate.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/ClassOrInterfaceTypeGenerationTemplate.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/MethodGenerationTemplate.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAClassOrInterfaceTypeCodeGenerator.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAMethodCodeGenerator.java create mode 100644 bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/utils/JOANAStringUtil.java diff --git a/.gitignore b/.gitignore index 884c1e8b..f460287c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,5 @@ tmp/ *.class # Xtend -xtend-gen/ *._trace -*.xtendbin \ No newline at end of file +*.xtendbin diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/ClassGenerationTemplate.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/ClassGenerationTemplate.java new file mode 100644 index 00000000..bd9a8648 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/ClassGenerationTemplate.java @@ -0,0 +1,46 @@ +package edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils.templates; + +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public abstract class ClassGenerationTemplate { + public String generate() { + StringConcatenation _builder = new StringConcatenation(); + String _generatePackage = this.generatePackage(); + _builder.append(_generatePackage); + _builder.newLineIfNotEmpty(); + String _generateImports = this.generateImports(); + _builder.append(_generateImports); + _builder.newLineIfNotEmpty(); + String _generateDeclaration = this.generateDeclaration(); + _builder.append(_generateDeclaration); + _builder.append("{"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _generateFields = this.generateFields(); + _builder.append(_generateFields, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _generateConstructors = this.generateConstructors(); + _builder.append(_generateConstructors, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _generateMethods = this.generateMethods(); + _builder.append(_generateMethods, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("}"); + return _builder.toString(); + } + + protected abstract String generatePackage(); + + protected abstract String generateImports(); + + protected abstract String generateDeclaration(); + + protected abstract String generateConstructors(); + + protected abstract String generateFields(); + + protected abstract String generateMethods(); +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/MethodGenerationTemplate.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/MethodGenerationTemplate.java new file mode 100644 index 00000000..d9123a32 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codegeneratorutils/templates/MethodGenerationTemplate.java @@ -0,0 +1,30 @@ +package edu.kit.kastel.sdq.coupling.alignment.codegeneratorutils.templates; + +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public abstract class MethodGenerationTemplate { + public CharSequence generate() { + StringConcatenation _builder = new StringConcatenation(); + String _generateComments = this.generateComments(); + _builder.append(_generateComments); + _builder.newLineIfNotEmpty(); + String _generateHeader = this.generateHeader(); + _builder.append(_generateHeader); + _builder.append("{"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _generateBody = this.generateBody(); + _builder.append(_generateBody, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("}"); + _builder.newLine(); + return _builder; + } + + protected abstract String generateComments(); + + protected abstract String generateHeader(); + + protected abstract String generateBody(); +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingCodeGenerator.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingCodeGenerator.java new file mode 100644 index 00000000..a18bedb1 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingCodeGenerator.java @@ -0,0 +1,679 @@ +package edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator; + +import edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates.CodeQLQueryTemplate; +import edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates.CodeQLTainttrackingTemplate; +import edu.kit.kastel.sdq.coupling.models.codeql.tainttracking.AllowedFlow; +import edu.kit.kastel.sdq.coupling.models.codeql.tainttracking.FieldAnnotation; +import edu.kit.kastel.sdq.coupling.models.codeql.tainttracking.ParameterAnnotation; +import edu.kit.kastel.sdq.coupling.models.codeql.tainttracking.Query; +import edu.kit.kastel.sdq.coupling.models.codeql.tainttracking.SecurityLevel; +import edu.kit.kastel.sdq.coupling.models.codeql.tainttracking.SecurityLevelAnnotation; +import edu.kit.kastel.sdq.coupling.models.java.JavaRoot; +import edu.kit.kastel.sdq.coupling.models.java.supporting.util.JavaResolutionUtil; +import org.eclipse.emf.common.util.EList; +import org.eclipse.xtend2.lib.StringConcatenation; +import org.eclipse.xtext.xbase.lib.StringExtensions; + +@SuppressWarnings("all") +public class CodeQLTainttrackingCodeGenerator extends CodeQLTainttrackingTemplate { + public static final String HAS_LABEL_CHECK_NAME = "hasLabel"; + + public static final String LABEL_FUNCTION_NAME = "getLabel"; + + public static final String MODULE_NAME = "MyTaintFlow"; + + public static final String CONFIG_NAME = "MyFlowConfiguration"; + + public static final String ID = "labeledtaint"; + + public static final String LABEL_TYPE_NAME = "SecurityLevel"; + + private static final String SUBLEVEL_DELIMINATOR = ";"; + + public static final String PRINT_RESULT_NAME = "printResult"; + + public static final String CONSIDER_NOT_EQUAL_ELEMENTS = "notEqualElements"; + + public static final String CLASS_FIELD_DELIMITER = "!"; + + public static final String SYSTEMELEMENT_TYPE_DELIMITER = ":"; + + public static final String METHOD_PARAMETER_DELIMITER = "."; + + public static final String CLASS_METHOD_DELIMITER = "::"; + + public static final String SOURCE_SINK_DELIMITER = "->"; + + public static final String SYSTEMELEMENT_SECURITYELEMENT_DELIMITER = ","; + + private final CodeQLQueryTemplate query; + + private final Query config; + + private final JavaRoot root; + + public CodeQLTainttrackingCodeGenerator(final JavaRoot root, final Query config) { + this.config = config; + this.root = root; + CodeQLTainttrackingQueryCodeGenerator _codeQLTainttrackingQueryCodeGenerator = new CodeQLTainttrackingQueryCodeGenerator(); + this.query = _codeQLTainttrackingQueryCodeGenerator; + } + + @Override + protected String generateInformationFlowModuleUsage() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("module "); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append(" = TaintTracking::Global<"); + _builder.append(CodeQLTainttrackingCodeGenerator.CONFIG_NAME); + _builder.append(">;"); + _builder.newLineIfNotEmpty(); + _builder.append("import "); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append("::PathGraph"); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + @Override + protected String generateConfiguration() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("module "); + _builder.append(CodeQLTainttrackingCodeGenerator.CONFIG_NAME); + _builder.append(" implements DataFlow::ConfigSig {"); + _builder.newLineIfNotEmpty(); + _builder.append("\t\t"); + _builder.newLine(); + _builder.append("\t\t "); + _builder.append("predicate isSource(DataFlow::Node source){"); + _builder.newLine(); + _builder.append("\t\t "); + _builder.append(CodeQLTainttrackingCodeGenerator.HAS_LABEL_CHECK_NAME, "\t\t "); + _builder.append("(source)"); + _builder.newLineIfNotEmpty(); + _builder.append("\t\t "); + _builder.append("}"); + _builder.newLine(); + _builder.append("\t\t"); + _builder.newLine(); + _builder.append("\t\t "); + _builder.append("predicate isSink(DataFlow::Node sink) {"); + _builder.newLine(); + _builder.append("\t\t "); + _builder.append(CodeQLTainttrackingCodeGenerator.HAS_LABEL_CHECK_NAME, "\t\t "); + _builder.append("(sink)"); + _builder.newLineIfNotEmpty(); + _builder.append("\t\t "); + _builder.append("}"); + _builder.newLine(); + _builder.append("\t"); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + @Override + protected String generateAllowedFlows() { + StringConcatenation _builder = new StringConcatenation(); + String _generateallowedFlowsSecurityLevel = this.generateallowedFlowsSecurityLevel(); + _builder.append(_generateallowedFlowsSecurityLevel); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateIsFlowAllowedNodes = this.generateIsFlowAllowedNodes(); + _builder.append(_generateIsFlowAllowedNodes); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generateallowedFlowsSecurityLevel() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("predicate allowedFlows("); + _builder.append(CodeQLTainttrackingCodeGenerator.LABEL_TYPE_NAME); + _builder.append(" source, "); + _builder.append(CodeQLTainttrackingCodeGenerator.LABEL_TYPE_NAME); + _builder.append(" sink){"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + { + EList _allowedFlows = this.config.getAllowedFlows().getAllowedFlows(); + boolean _hasElements = false; + for(final AllowedFlow allowedFlow : _allowedFlows) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(" or", "\t"); + } + String _singleAllowedFlow = this.singleAllowedFlow(allowedFlow); + _builder.append(_singleAllowedFlow, "\t"); + } + } + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + _builder.append("or getLevelAsString(source) = getLevelAsString(sink) "); + _builder.newLine(); + _builder.append("\t"); + _builder.append("or exists(SecurityLevel l | allowedFlows(source, l) and allowedFlows(l, sink)) "); + _builder.newLine(); + _builder.append("\t"); + _builder.append("or none()"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generateIsFlowAllowedNodes() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("predicate isFlowAllowed(DataFlow::Node source, DataFlow::Node sink){"); + _builder.newLine(); + _builder.append(" "); + _builder.append("allowedFlows(getLabel(source), getLabel(sink))"); + _builder.newLine(); + _builder.append("} "); + _builder.newLine(); + return _builder.toString(); + } + + @Override + protected String generateAvailableLabelCheck() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("predicate hasLabel(DataFlow::Node node){"); + _builder.newLine(); + _builder.append(" "); + _builder.append("getLabel(node) != None()"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + @Override + protected String generateQuery() { + return this.query.generate(); + } + + @Override + protected String generateLabelFunction() { + StringConcatenation _builder = new StringConcatenation(); + String _generateLabellingSupportFunction = this.generateLabellingSupportFunction(); + _builder.append(_generateLabellingSupportFunction); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateLabelingFunction = this.generateLabelingFunction(); + _builder.append(_generateLabelingFunction); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + @Override + protected String generateSecurityLevels() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("newtype "); + _builder.append(CodeQLTainttrackingCodeGenerator.LABEL_TYPE_NAME); + _builder.append(" = "); + _builder.newLineIfNotEmpty(); + { + EList _appliedSecurityLevel = this.config.getAppliedSecurityLevel(); + boolean _hasElements = false; + for(final SecurityLevel level : _appliedSecurityLevel) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(" or", ""); + } + String _firstUpper = StringExtensions.toFirstUpper(level.getName().replace(";", "")); + _builder.append(_firstUpper); + _builder.append("()"); + _builder.newLineIfNotEmpty(); + } + } + _builder.append("or None()"); + _builder.newLine(); + return _builder.toString(); + } + + protected String generateLabellingSupportFunction() { + StringConcatenation _builder = new StringConcatenation(); + String _generateLabelingSupportFunctionForParameter = this.generateLabelingSupportFunctionForParameter(); + _builder.append(_generateLabelingSupportFunctionForParameter); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateLabelingSupportFunctionForField = this.generateLabelingSupportFunctionForField(); + _builder.append(_generateLabelingSupportFunctionForField); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generateLabelingSupportFunctionForParameter() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("predicate labelParameter(string className, string methodName, string parameterName, DataFlow::Node node){"); + _builder.newLine(); + _builder.append(" "); + _builder.newLine(); + _builder.append(" "); + _builder.append("exists (Class c, Method m, Parameter p | "); + _builder.newLine(); + _builder.append(" "); + _builder.append("c.contains(m) and "); + _builder.newLine(); + _builder.append(" "); + _builder.append("c.hasName(className) and "); + _builder.newLine(); + _builder.append(" "); + _builder.append("m.contains(p) and "); + _builder.newLine(); + _builder.append(" "); + _builder.append("m.hasName(methodName) and "); + _builder.newLine(); + _builder.append(" "); + _builder.append("p.hasName(parameterName) "); + _builder.newLine(); + _builder.append(" "); + _builder.append("and p = node.asParameter()"); + _builder.newLine(); + _builder.append(" "); + _builder.append(") "); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generateLabelingSupportFunctionForField() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("predicate labelField(string className, string fieldName, DataFlow::Node node){"); + _builder.newLine(); + _builder.append("\t"); + _builder.append("exists(Class c, Field f | "); + _builder.newLine(); + _builder.append("\t\t"); + _builder.append("c.hasName(className) and "); + _builder.newLine(); + _builder.append("\t\t"); + _builder.append("c.contains(f) and"); + _builder.newLine(); + _builder.append("\t\t"); + _builder.append("f.hasName(fieldName) and "); + _builder.newLine(); + _builder.append("\t\t"); + _builder.append("node.asExpr().(FieldAccess).getField() = f"); + _builder.newLine(); + _builder.append("\t"); + _builder.append(")"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + protected String generateLabelingFunction() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append(CodeQLTainttrackingCodeGenerator.LABEL_TYPE_NAME); + _builder.append(" "); + _builder.append(CodeQLTainttrackingCodeGenerator.LABEL_FUNCTION_NAME); + _builder.append("(DataFlow::Node node){"); + _builder.newLineIfNotEmpty(); + { + EList _securityLevelAnnotations = this.config.getSecurityLevelAnnotations(); + boolean _hasElements = false; + for(final SecurityLevelAnnotation annotation : _securityLevelAnnotations) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(" or", "\t"); + } + _builder.append("\t"); + String _generateSingleParameterLabeling = this.generateSingleParameterLabeling(annotation); + _builder.append(_generateSingleParameterLabeling, "\t"); + _builder.newLineIfNotEmpty(); + } + } + _builder.append("\t"); + _builder.append("or result = None()"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String singleAllowedFlow(final AllowedFlow flow) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("source = "); + String _generateSecurityLevelType = this.generateSecurityLevelType(flow.getFrom()); + _builder.append(_generateSecurityLevelType); + _builder.append(" and sink = "); + String _generateSecurityLevelType_1 = this.generateSecurityLevelType(flow.getTo()); + _builder.append(_generateSecurityLevelType_1); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generateSingleParameterLabeling(final SecurityLevelAnnotation anno) { + if ((anno instanceof ParameterAnnotation)) { + final String levelString = ((ParameterAnnotation)anno).getSecurityLevel().getName(); + final String className = JavaResolutionUtil.getClassForParameter(this.root, ((ParameterAnnotation)anno).getParameter()).getName(); + final String methodName = JavaResolutionUtil.getMethodContainingParameter(this.root, ((ParameterAnnotation)anno).getParameter()).getName(); + final String parameterName = ((ParameterAnnotation)anno).getParameter().getName(); + return this.generateSingleParameterLabeling(className, methodName, parameterName, ((ParameterAnnotation)anno).getSecurityLevel()); + } + if ((anno instanceof FieldAnnotation)) { + final String levelString_1 = ((FieldAnnotation)anno).getSecurityLevel().getName(); + final String className_1 = JavaResolutionUtil.getClassForField(this.root, ((FieldAnnotation)anno).getField()).getName(); + final String fieldName = ((FieldAnnotation)anno).getField().getName(); + return this.generateSingleFieldLabeling(className_1, fieldName, ((FieldAnnotation)anno).getSecurityLevel()); + } + return null; + } + + private String generateSingleParameterLabeling(final String className, final String methodName, final String parameterName, final SecurityLevel label) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("labelParameter(\""); + _builder.append(className); + _builder.append("\", \""); + _builder.append(methodName); + _builder.append("\", \""); + _builder.append(parameterName); + _builder.append("\", node) and result = "); + String _generateSecurityLevelType = this.generateSecurityLevelType(label); + _builder.append(_generateSecurityLevelType); + _builder.append(" "); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generateSingleFieldLabeling(final String className, final String fieldName, final SecurityLevel label) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("labelField(\""); + _builder.append(className); + _builder.append("\", \""); + _builder.append(fieldName); + _builder.append("\", node) and result = "); + String _generateSecurityLevelType = this.generateSecurityLevelType(label); + _builder.append(_generateSecurityLevelType); + _builder.append(" "); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + @Override + protected String generateMetaData() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("/**"); + _builder.newLine(); + _builder.append("* @kind path-problem"); + _builder.newLine(); + _builder.append("* @problem.severity warning"); + _builder.newLine(); + _builder.append("* @id "); + _builder.append(CodeQLTainttrackingCodeGenerator.ID); + _builder.newLineIfNotEmpty(); + _builder.append("*/"); + _builder.newLine(); + return _builder.toString(); + } + + @Override + protected String generatePackageImports() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("import java"); + _builder.newLine(); + _builder.append("import semmle.code.java.dataflow.TaintTracking"); + _builder.newLine(); + return _builder.toString(); + } + + @Override + protected String generateLevelToStringFunction() { + StringConcatenation _builder = new StringConcatenation(); + String _generateLevelToString = this.generateLevelToString(); + _builder.append(_generateLevelToString); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateNodeToLevelString = this.generateNodeToLevelString(); + _builder.append(_generateNodeToLevelString); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generateLevelToString() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("string getLevelAsString("); + _builder.append(CodeQLTainttrackingCodeGenerator.LABEL_TYPE_NAME); + _builder.append(" level){"); + _builder.newLineIfNotEmpty(); + { + EList _appliedSecurityLevel = this.config.getAppliedSecurityLevel(); + boolean _hasElements = false; + for(final SecurityLevel level : _appliedSecurityLevel) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(" or", "\t\t"); + } + _builder.append("\t\t"); + _builder.append("level = "); + String _generateSecurityLevelType = this.generateSecurityLevelType(level); + _builder.append(_generateSecurityLevelType, "\t\t"); + _builder.append(" and result = \""); + String _name = level.getName(); + _builder.append(_name, "\t\t"); + _builder.append("\""); + _builder.newLineIfNotEmpty(); + } + } + _builder.append("\t"); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generateNodeToLevelString() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("string getNodeLevelAsString(DataFlow::Node node){"); + _builder.newLine(); + _builder.append("\t \t"); + _builder.append("result = getLevelAsString(getLabel(node))"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generateSecurityLevelType(final SecurityLevel level) { + StringConcatenation _builder = new StringConcatenation(); + String _firstUpper = StringExtensions.toFirstUpper(level.getName().replace(CodeQLTainttrackingCodeGenerator.SUBLEVEL_DELIMINATOR, "")); + _builder.append(_firstUpper); + _builder.append("()"); + return _builder.toString(); + } + + @Override + protected String generateFunctionCatchingEquality() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("predicate "); + _builder.append(CodeQLTainttrackingCodeGenerator.CONSIDER_NOT_EQUAL_ELEMENTS); + _builder.append("(DataFlow::Node node1, DataFlow::Node node2){"); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("node1.getEnclosingCallable().getDeclaringType().getPackage() != node2.getEnclosingCallable().getDeclaringType().getPackage() "); + _builder.newLine(); + _builder.append(" "); + _builder.append("or"); + _builder.newLine(); + _builder.append(" "); + _builder.append("node1.getEnclosingCallable().getDeclaringType().getName() != node2.getEnclosingCallable().getDeclaringType().getName() "); + _builder.newLine(); + _builder.append(" "); + _builder.append("or "); + _builder.newLine(); + _builder.append(" "); + _builder.append("node1.asExpr().(FieldAccess).getField().getName() != node2.asExpr().(FieldAccess).getField().getName()"); + _builder.newLine(); + _builder.append(" "); + _builder.append("or "); + _builder.newLine(); + _builder.append(" "); + _builder.append("node1.getEnclosingCallable().getName() != node2.getEnclosingCallable().getName()"); + _builder.newLine(); + _builder.append(" "); + _builder.append("or node1.asParameter().getName() != node2.asParameter().getName()"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + @Override + protected String generateResultPrinting() { + StringConcatenation _builder = new StringConcatenation(); + String _generatePrintResult = this.generatePrintResult(); + _builder.append(_generatePrintResult); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generatePrintResultForNode = this.generatePrintResultForNode(); + _builder.append(_generatePrintResultForNode); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generatePrintResultForParameter = this.generatePrintResultForParameter(); + _builder.append(_generatePrintResultForParameter); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generatePrintResultForField = this.generatePrintResultForField(); + _builder.append(_generatePrintResultForField); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generatePrintResult() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("string "); + _builder.append(CodeQLTainttrackingCodeGenerator.PRINT_RESULT_NAME); + _builder.append("("); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append("::PathNode source, "); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append("::PathNode sink){"); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("result = "); + _builder.newLine(); + _builder.append(" "); + _builder.append("\"(\" "); + _builder.newLine(); + _builder.append(" "); + _builder.append("+ "); + _builder.append(CodeQLTainttrackingCodeGenerator.PRINT_RESULT_NAME, " "); + _builder.append("(source.getNode()) "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+\""); + _builder.append(CodeQLTainttrackingCodeGenerator.SYSTEMELEMENT_SECURITYELEMENT_DELIMITER, " "); + _builder.append("\" "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ getNodeLevelAsString(source.getNode()) "); + _builder.newLine(); + _builder.append(" "); + _builder.append("+ \")\" "); + _builder.newLine(); + _builder.append(" "); + _builder.append("+ \""); + _builder.append(CodeQLTainttrackingCodeGenerator.SOURCE_SINK_DELIMITER, " "); + _builder.append(" (\" "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ "); + _builder.append(CodeQLTainttrackingCodeGenerator.PRINT_RESULT_NAME, " "); + _builder.append("(sink.getNode()) "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ \""); + _builder.append(CodeQLTainttrackingCodeGenerator.SYSTEMELEMENT_SECURITYELEMENT_DELIMITER, " "); + _builder.append("\" "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ getNodeLevelAsString(sink.getNode()) "); + _builder.newLine(); + _builder.append(" "); + _builder.append("+\")\""); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generatePrintResultForParameter() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("string printParameter(DataFlow::Node node){"); + _builder.newLine(); + _builder.append(" "); + _builder.append("result = node.getEnclosingCallable().getDeclaringType().getPackage() + \".\" "); + _builder.newLine(); + _builder.append(" "); + _builder.append("+ node.getEnclosingCallable().getDeclaringType().getName() + \""); + _builder.append(CodeQLTainttrackingCodeGenerator.CLASS_METHOD_DELIMITER, " "); + _builder.append("\" "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ node.getEnclosingCallable().getName()"); + _builder.newLine(); + _builder.append(" "); + _builder.append("+ \""); + _builder.append(CodeQLTainttrackingCodeGenerator.METHOD_PARAMETER_DELIMITER, " "); + _builder.append("\""); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ node.asParameter().getName() + \""); + _builder.append(CodeQLTainttrackingCodeGenerator.SYSTEMELEMENT_TYPE_DELIMITER, " "); + _builder.append("\""); + _builder.newLineIfNotEmpty(); + _builder.append(" \t"); + _builder.append("+ node.asParameter().getType().getName()"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generatePrintResultForField() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("string printField(DataFlow::Node node){"); + _builder.newLine(); + _builder.append(" "); + _builder.append("result = node.getEnclosingCallable().getDeclaringType().getPackage() + \".\" "); + _builder.newLine(); + _builder.append(" "); + _builder.append("+ node.getEnclosingCallable().getDeclaringType().getName() + \""); + _builder.append(CodeQLTainttrackingCodeGenerator.CLASS_FIELD_DELIMITER, " "); + _builder.append("\" "); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("+ node.asExpr().(FieldAccess).getField().getName() + \""); + _builder.append(CodeQLTainttrackingCodeGenerator.SYSTEMELEMENT_TYPE_DELIMITER, " "); + _builder.append("\" "); + _builder.newLineIfNotEmpty(); + _builder.append(" \t"); + _builder.append("+ node.asExpr().(FieldAccess).getField().getType().getName()"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + private String generatePrintResultForNode() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("string "); + _builder.append(CodeQLTainttrackingCodeGenerator.PRINT_RESULT_NAME); + _builder.append("(DataFlow::Node node){"); + _builder.newLineIfNotEmpty(); + _builder.append(" "); + _builder.append("result = printField(node) or"); + _builder.newLine(); + _builder.append(" "); + _builder.append("result = printParameter(node)"); + _builder.newLine(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingQueryCodeGenerator.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingQueryCodeGenerator.java new file mode 100644 index 00000000..7a82fdd3 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/CodeQLTainttrackingQueryCodeGenerator.java @@ -0,0 +1,99 @@ +package edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator; + +import edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates.CodeQLQueryTemplate; +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public class CodeQLTainttrackingQueryCodeGenerator extends CodeQLQueryTemplate { + public static final String SOURCE_NAME = "source"; + + public static final String SINK_NAME = "sink"; + + @Override + public String generateSelectClause() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SINK_NAME); + _builder.append(".getNode(), "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SOURCE_NAME); + _builder.append(", "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SINK_NAME); + _builder.append(", "); + String _generateMessage = this.generateMessage(); + _builder.append(_generateMessage); + return _builder.toString(); + } + + @Override + public String generateWhereClause() { + StringConcatenation _builder = new StringConcatenation(); + String _generateFlowPath = this.generateFlowPath(); + _builder.append(_generateFlowPath); + _builder.append(" and "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SOURCE_NAME); + _builder.append(" != "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SINK_NAME); + _builder.append(" and "); + String _generateNotAllowedFlow = this.generateNotAllowedFlow(); + _builder.append(_generateNotAllowedFlow); + _builder.append(" and "); + String _generateNotEqualElementsCheck = this.generateNotEqualElementsCheck(); + _builder.append(_generateNotEqualElementsCheck); + return _builder.toString(); + } + + @Override + public String generateFromClause() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append("::PathNode "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SOURCE_NAME); + _builder.append(", "); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append("::PathNode "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SINK_NAME); + return _builder.toString(); + } + + public String generateHasLabelCheck(final String element) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append(CodeQLTainttrackingCodeGenerator.HAS_LABEL_CHECK_NAME); + _builder.append("("); + _builder.append(element); + _builder.append(")"); + return _builder.toString(); + } + + public String generateNotAllowedFlow() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("not isFlowAllowed("); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SOURCE_NAME); + _builder.append(".getNode(), "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SINK_NAME); + _builder.append(".getNode())"); + return _builder.toString(); + } + + public String generateFlowPath() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append(CodeQLTainttrackingCodeGenerator.MODULE_NAME); + _builder.append("::flowPath("); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SOURCE_NAME); + _builder.append(", "); + _builder.append(CodeQLTainttrackingQueryCodeGenerator.SINK_NAME); + _builder.append(")"); + return _builder.toString(); + } + + public String generateMessage() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append(CodeQLTainttrackingCodeGenerator.PRINT_RESULT_NAME); + _builder.append("(source, sink)"); + return _builder.toString(); + } + + public String generateNotEqualElementsCheck() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("notEqualElements(source.getNode(), sink.getNode())"); + return _builder.toString(); + } +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLQueryTemplate.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLQueryTemplate.java new file mode 100644 index 00000000..442f0525 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLQueryTemplate.java @@ -0,0 +1,29 @@ +package edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates; + +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public abstract class CodeQLQueryTemplate { + public String generate() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("from "); + String _generateFromClause = this.generateFromClause(); + _builder.append(_generateFromClause); + _builder.newLineIfNotEmpty(); + _builder.append("where "); + String _generateWhereClause = this.generateWhereClause(); + _builder.append(_generateWhereClause); + _builder.newLineIfNotEmpty(); + _builder.append("select "); + String _generateSelectClause = this.generateSelectClause(); + _builder.append(_generateSelectClause); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + protected abstract String generateSelectClause(); + + protected abstract String generateWhereClause(); + + protected abstract String generateFromClause(); +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLTainttrackingTemplate.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLTainttrackingTemplate.java new file mode 100644 index 00000000..c05c21f0 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/codeqltainttrackingcodegenerator/templates/CodeQLTainttrackingTemplate.java @@ -0,0 +1,82 @@ +package edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator.templates; + +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public abstract class CodeQLTainttrackingTemplate { + public String generate() { + StringConcatenation _builder = new StringConcatenation(); + String _generateMetaData = this.generateMetaData(); + _builder.append(_generateMetaData); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generatePackageImports = this.generatePackageImports(); + _builder.append(_generatePackageImports); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateSecurityLevels = this.generateSecurityLevels(); + _builder.append(_generateSecurityLevels); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateLabelFunction = this.generateLabelFunction(); + _builder.append(_generateLabelFunction); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateAvailableLabelCheck = this.generateAvailableLabelCheck(); + _builder.append(_generateAvailableLabelCheck); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateAllowedFlows = this.generateAllowedFlows(); + _builder.append(_generateAllowedFlows); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateConfiguration = this.generateConfiguration(); + _builder.append(_generateConfiguration); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateLevelToStringFunction = this.generateLevelToStringFunction(); + _builder.append(_generateLevelToStringFunction); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateResultPrinting = this.generateResultPrinting(); + _builder.append(_generateResultPrinting); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateFunctionCatchingEquality = this.generateFunctionCatchingEquality(); + _builder.append(_generateFunctionCatchingEquality); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateInformationFlowModuleUsage = this.generateInformationFlowModuleUsage(); + _builder.append(_generateInformationFlowModuleUsage); + _builder.newLineIfNotEmpty(); + _builder.newLine(); + String _generateQuery = this.generateQuery(); + _builder.append(_generateQuery); + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + protected abstract String generateFunctionCatchingEquality(); + + protected abstract String generateResultPrinting(); + + protected abstract String generateLevelToStringFunction(); + + protected abstract String generatePackageImports(); + + protected abstract String generateMetaData(); + + protected abstract String generateAvailableLabelCheck(); + + protected abstract String generateInformationFlowModuleUsage(); + + protected abstract String generateConfiguration(); + + protected abstract String generateAllowedFlows(); + + protected abstract String generateLabelFunction(); + + protected abstract String generateSecurityLevels(); + + protected abstract String generateQuery(); +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/ClassOrInterfaceTypeGenerationTemplate.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/ClassOrInterfaceTypeGenerationTemplate.java new file mode 100644 index 00000000..a421689d --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/ClassOrInterfaceTypeGenerationTemplate.java @@ -0,0 +1,248 @@ +package edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.templates; + +import edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.utils.Filter; +import edu.kit.kastel.sdq.coupling.models.java.JavaRoot; +import edu.kit.kastel.sdq.coupling.models.java.members.Field; +import edu.kit.kastel.sdq.coupling.models.java.supporting.util.JavaResolutionUtil; +import edu.kit.kastel.sdq.coupling.models.java.types.ClassOrInterfaceType; +import edu.kit.kastel.sdq.coupling.models.java.types.Interface; +import java.util.ArrayList; +import java.util.List; +import org.eclipse.emf.common.util.EList; +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public abstract class ClassOrInterfaceTypeGenerationTemplate { + protected ClassOrInterfaceType currentClassOrInterface; + + protected JavaRoot javaRoot; + + public String generate() { + StringConcatenation _builder = new StringConcatenation(); + { + boolean _checkFilterList = Filter.checkFilterList(this.currentClassOrInterface.getName()); + boolean _not = (!_checkFilterList); + if (_not) { + _builder.append("\t"); + String _generatePackageDeclaration = this.generatePackageDeclaration(); + _builder.append(_generatePackageDeclaration, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + _builder.newLine(); + _builder.append("\t"); + String _generateImports = this.generateImports(); + _builder.append(_generateImports, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + _builder.newLine(); + _builder.append("\t"); + String _generateDeclaration = this.generateDeclaration(); + _builder.append(_generateDeclaration, "\t"); + _builder.append(" {"); + _builder.newLineIfNotEmpty(); + { + if ((this.currentClassOrInterface instanceof edu.kit.kastel.sdq.coupling.models.java.types.Class)) { + _builder.append("\t"); + String _generateFields = this.generateFields(); + _builder.append(_generateFields, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + _builder.newLine(); + _builder.append("\t"); + String _generateConstructors = this.generateConstructors(); + _builder.append(_generateConstructors, "\t"); + _builder.newLineIfNotEmpty(); + } + } + _builder.append("\t"); + String _generateMethods = this.generateMethods(); + _builder.append(_generateMethods, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("}"); + } + } + return _builder.toString(); + } + + protected String generatePackageDeclaration() { + final List packagePath = JavaResolutionUtil.getPackagePathToClassOrInterface(this.javaRoot, this.currentClassOrInterface); + return String.format("package %s;", JavaResolutionUtil.creatyFullPackagePathFromParts(packagePath)); + } + + protected abstract String generateImports(); + + protected String generateDeclaration() { + if ((this.currentClassOrInterface instanceof Interface)) { + return this.generateInterfaceDeclaration(((Interface) this.currentClassOrInterface)); + } else { + if ((this.currentClassOrInterface instanceof edu.kit.kastel.sdq.coupling.models.java.types.Class)) { + return this.generateClassDeclaration(((edu.kit.kastel.sdq.coupling.models.java.types.Class) this.currentClassOrInterface)); + } + } + return ""; + } + + protected String generateConstructors() { + final edu.kit.kastel.sdq.coupling.models.java.types.Class clazz = ((edu.kit.kastel.sdq.coupling.models.java.types.Class) this.currentClassOrInterface); + StringConcatenation _builder = new StringConcatenation(); + _builder.append("public "); + String _name = this.currentClassOrInterface.getName(); + _builder.append(_name); + _builder.append("("); + String _generateConstructorParameters = this.generateConstructorParameters(clazz); + _builder.append(_generateConstructorParameters); + _builder.append("){"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _generateConstructorBody = this.generateConstructorBody(clazz); + _builder.append(_generateConstructorBody, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("}"); + _builder.newLine(); + return _builder.toString(); + } + + protected String generateFields() { + final edu.kit.kastel.sdq.coupling.models.java.types.Class castedClass = ((edu.kit.kastel.sdq.coupling.models.java.types.Class) this.currentClassOrInterface); + StringConcatenation _builder = new StringConcatenation(); + { + EList _field = castedClass.getField(); + boolean _hasElements = false; + for(final Field field : _field) { + if (!_hasElements) { + _hasElements = true; + } else { + String _lineSeparator = System.lineSeparator(); + _builder.appendImmediate(_lineSeparator, ""); + } + String _generateField = this.generateField(field); + _builder.append(_generateField); + } + } + return _builder.toString(); + } + + protected abstract String generateMethods(); + + public ClassOrInterfaceType setClassOrInterfaceType(final ClassOrInterfaceType coi) { + return this.currentClassOrInterface = coi; + } + + public ClassOrInterfaceType getClassOrInterfaceType() { + return this.currentClassOrInterface; + } + + public JavaRoot setJavaRoot(final JavaRoot javaRoot) { + return this.javaRoot = javaRoot; + } + + public JavaRoot getJavaRoot() { + return this.javaRoot; + } + + private String generateInterfaceDeclaration(final Interface interf) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("public interface "); + String _name = interf.getName(); + _builder.append(_name); + return _builder.toString(); + } + + private String generateClassDeclaration(final edu.kit.kastel.sdq.coupling.models.java.types.Class clazz) { + final ArrayList extendsRelations = new ArrayList(); + StringConcatenation _builder = new StringConcatenation(); + _builder.append("public class "); + String _name = clazz.getName(); + _builder.append(_name); + { + int _size = extendsRelations.size(); + boolean _greaterThan = (_size > 0); + if (_greaterThan) { + _builder.append(" extends "); + String _name_1 = extendsRelations.get(0).getName(); + _builder.append(_name_1); + } + } + { + int _size_1 = clazz.getImplements().size(); + boolean _greaterThan_1 = (_size_1 > 0); + if (_greaterThan_1) { + _builder.append(" implements "); + { + EList _implements = clazz.getImplements(); + boolean _hasElements = false; + for(final Interface interf : _implements) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(", ", ""); + } + String _name_2 = interf.getName(); + _builder.append(_name_2); + } + } + } + } + return _builder.toString(); + } + + private String generateConstructorParameters(final edu.kit.kastel.sdq.coupling.models.java.types.Class clazz) { + StringConcatenation _builder = new StringConcatenation(); + { + EList _field = clazz.getField(); + boolean _hasElements = false; + for(final Field field : _field) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(", ", ""); + } + String _name = field.getType().getName(); + _builder.append(_name); + _builder.append(" "); + String _name_1 = field.getName(); + _builder.append(_name_1); + } + } + return _builder.toString(); + } + + private String generateConstructorBody(final edu.kit.kastel.sdq.coupling.models.java.types.Class clazz) { + StringConcatenation _builder = new StringConcatenation(); + { + EList _field = clazz.getField(); + boolean _hasElements = false; + for(final Field field : _field) { + if (!_hasElements) { + _hasElements = true; + } else { + String _lineSeparator = System.lineSeparator(); + _builder.appendImmediate(_lineSeparator, ""); + } + _builder.append("this."); + String _name = field.getName(); + _builder.append(_name); + _builder.append(" = "); + String _name_1 = field.getName(); + _builder.append(_name_1); + _builder.append(";"); + } + } + _builder.newLineIfNotEmpty(); + _builder.append("//TODO: Complete constructor"); + _builder.newLine(); + return _builder.toString(); + } + + protected String generateField(final Field field) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("public "); + String _name = field.getType().getName(); + _builder.append(_name); + _builder.append(" "); + String _name_1 = field.getName(); + _builder.append(_name_1); + _builder.append(";"); + return _builder.toString(); + } +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/MethodGenerationTemplate.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/MethodGenerationTemplate.java new file mode 100644 index 00000000..1c189286 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/generation/javacodegenerator/templates/MethodGenerationTemplate.java @@ -0,0 +1,146 @@ +package edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.templates; + +import edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.utils.Filter; +import edu.kit.kastel.sdq.coupling.models.java.members.Method; +import edu.kit.kastel.sdq.coupling.models.java.members.Parameter; +import edu.kit.kastel.sdq.coupling.models.java.types.ClassOrInterfaceType; +import edu.kit.kastel.sdq.coupling.models.java.types.Type; +import org.eclipse.emf.common.util.EList; +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public abstract class MethodGenerationTemplate { + protected Method currentMethod; + + protected ClassOrInterfaceType parent; + + public String generate() { + StringConcatenation _builder = new StringConcatenation(); + String _generateAnnotationsAndComments = this.generateAnnotationsAndComments(); + _builder.append(_generateAnnotationsAndComments); + _builder.newLineIfNotEmpty(); + String _generateHeader = this.generateHeader(); + _builder.append(_generateHeader); + { + if ((this.parent instanceof edu.kit.kastel.sdq.coupling.models.java.types.Class)) { + _builder.append("{"); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _generateBody = this.generateBody(); + _builder.append(_generateBody, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append("}"); + } else { + _builder.append(";"); + } + } + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + protected String generateAnnotationsAndComments() { + StringConcatenation _builder = new StringConcatenation(); + return _builder.toString(); + } + + protected String generateHeader() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("public "); + { + Type _returntype = this.currentMethod.getReturntype(); + boolean _tripleNotEquals = (_returntype != null); + if (_tripleNotEquals) { + String _name = this.currentMethod.getReturntype().getName(); + _builder.append(_name); + } else { + _builder.append("void"); + } + } + _builder.append(" "); + String _name_1 = this.currentMethod.getName(); + _builder.append(_name_1); + _builder.append(" ("); + String _generateParameters = this.generateParameters(); + _builder.append(_generateParameters); + _builder.append(")"); + return _builder.toString(); + } + + protected String generateParameters() { + StringConcatenation _builder = new StringConcatenation(); + { + EList _parameter = this.currentMethod.getParameter(); + boolean _hasElements = false; + for(final Parameter parameter : _parameter) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(", ", ""); + } + String _generateParameter = this.generateParameter(parameter); + _builder.append(_generateParameter); + } + } + return _builder.toString(); + } + + protected String generateParameter(final Parameter parameter) { + StringConcatenation _builder = new StringConcatenation(); + String _generateAnnotations = this.generateAnnotations(parameter); + _builder.append(_generateAnnotations); + String _generateParameterTypeName = this.generateParameterTypeName(parameter); + _builder.append(_generateParameterTypeName); + _builder.append(" "); + String _name = parameter.getName(); + _builder.append(_name); + return _builder.toString(); + } + + protected String generateAnnotations(final Parameter parameter) { + StringConcatenation _builder = new StringConcatenation(); + return _builder.toString(); + } + + protected String generateBody() { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("//TODO: auto-generated method stub"); + return _builder.toString(); + } + + public void setCurrentMethod(final Method newMethod) { + this.currentMethod = newMethod; + } + + protected String generateParameterTypeName(final Parameter parameter) { + boolean _contains = parameter.getType().getName().contains(Filter.ARRAY_MARKER); + if (_contains) { + String[] parts = parameter.getType().getName().split("Array", (-1)); + int _length = parts.length; + final int count = (_length - 1); + String name = parameter.getType().getName().split("_")[0]; + for (int i = 0; (i < count); i++) { + name = (name + "[]"); + } + return name; + } else { + if ((((parameter.getType().getName().contains(Filter.INTERFACE_MARKER) || + parameter.getType().getName().contains(Filter.CLASS_MARKER)) || parameter.getType().getName().contains(Filter.PRIMITIVE_MARKER)) || parameter.getType().getName().contains(Filter.REMOTE_CLASS_MARKER))) { + return parameter.getType().getName().split("_")[0]; + } else { + return parameter.getType().getName(); + } + } + } + + public Method getCurrentMethod() { + return this.currentMethod; + } + + public void setParent(final ClassOrInterfaceType parent) { + this.parent = parent; + } + + public ClassOrInterfaceType getParent() { + return this.parent; + } +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAClassOrInterfaceTypeCodeGenerator.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAClassOrInterfaceTypeCodeGenerator.java new file mode 100644 index 00000000..d1c55da3 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAClassOrInterfaceTypeCodeGenerator.java @@ -0,0 +1,128 @@ +package edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.generators; + +import com.google.common.collect.Iterables; +import edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.templates.ClassOrInterfaceTypeGenerationTemplate; +import edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.templates.MethodGenerationTemplate; +import edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.utils.Filter; +import edu.kit.kastel.sdq.coupling.models.java.JavaRoot; +import edu.kit.kastel.sdq.coupling.models.java.members.Method; +import edu.kit.kastel.sdq.coupling.models.java.supporting.util.JavaResolutionUtil; +import edu.kit.kastel.sdq.coupling.models.java.types.ClassOrInterfaceType; +import edu.kit.kastel.sdq.coupling.models.java.types.CollectionType; +import edu.kit.kastel.sdq.coupling.models.java.types.Type; +import edu.kit.kastel.sdq.coupling.models.joana.EntryPoint; +import edu.kit.kastel.sdq.coupling.models.joana.InformationFlowAnnotation; +import edu.kit.kastel.sdq.coupling.models.joana.JOANARoot; +import edu.kit.kastel.sdq.coupling.models.joana.Source; +import java.util.Collection; +import java.util.List; +import org.eclipse.emf.common.util.EList; +import org.eclipse.xtend2.lib.StringConcatenation; +import org.eclipse.xtext.xbase.lib.Functions.Function1; +import org.eclipse.xtext.xbase.lib.IterableExtensions; + +@SuppressWarnings("all") +public class JOANAClassOrInterfaceTypeCodeGenerator extends ClassOrInterfaceTypeGenerationTemplate { + private final MethodGenerationTemplate methodGenerator; + + private JOANARoot joanaRoot; + + public JOANAClassOrInterfaceTypeCodeGenerator(final JavaRoot javaRoot, final JOANARoot joanaRoot) { + this.javaRoot = javaRoot; + this.joanaRoot = joanaRoot; + JOANAMethodCodeGenerator _jOANAMethodCodeGenerator = new JOANAMethodCodeGenerator(javaRoot, joanaRoot); + this.methodGenerator = _jOANAMethodCodeGenerator; + } + + @Override + protected String generateImports() { + String collectionImport = ""; + String joanaUIImports = ""; + final Function1 _function = (EntryPoint ep) -> { + return Boolean.valueOf(super.currentClassOrInterface.getMethod().contains(ep.getMethodIdentification().getMethod())); + }; + final Function1 _function_1 = (EntryPoint ep) -> { + int _size = ep.getAnnotation().size(); + return Boolean.valueOf((_size != 0)); + }; + final Function1 _function_2 = (EntryPoint ep) -> { + final Function1 _function_3 = (InformationFlowAnnotation an) -> { + return Boolean.valueOf((an instanceof Source)); + }; + return Boolean.valueOf(IterableExtensions.exists(ep.getAnnotation(), _function_3)); + }; + final Iterable entryPointsWithSourceAnnotations = IterableExtensions.filter(IterableExtensions.filter(IterableExtensions.filter(this.joanaRoot.getEntrypoint(), _function), _function_1), _function_2); + boolean _isEmpty = IterableExtensions.isEmpty(entryPointsWithSourceAnnotations); + final boolean targetedByJOANA = (!_isEmpty); + if (((this.currentClassOrInterface instanceof edu.kit.kastel.sdq.coupling.models.java.types.Class) && targetedByJOANA)) { + joanaUIImports = "import edu.kit.joana.ui.annotations.*;"; + } + final Collection types = JavaResolutionUtil.getAllNonPrimitiveTypes(this.currentClassOrInterface); + boolean _isEmpty_1 = IterableExtensions.isEmpty(Iterables.filter(types, CollectionType.class)); + boolean _not = (!_isEmpty_1); + if (_not) { + collectionImport = "import java.util.Collection;"; + } + final Function1 _function_3 = (ClassOrInterfaceType coi) -> { + return Boolean.valueOf((((coi.getName().contains(Filter.ARRAY_MARKER) || coi.getName().contains(Filter.OBJECT_MARKER)) || coi.getName().contains(Filter.PRIMITIVE_MARKER)) || coi.getName().contains(Filter.REMOTE_CLASS_MARKER))); + }; + final List classOrInterfaceTypes = IterableExtensions.toList(IterableExtensions.filter(Iterables.filter(types, ClassOrInterfaceType.class), _function_3)); + StringConcatenation _builder = new StringConcatenation(); + _builder.append(joanaUIImports); + _builder.append(" "); + _builder.newLineIfNotEmpty(); + _builder.append(collectionImport); + _builder.append(" "); + _builder.newLineIfNotEmpty(); + { + boolean _hasElements = false; + for(final ClassOrInterfaceType classOrInterfaceType : classOrInterfaceTypes) { + if (!_hasElements) { + _hasElements = true; + } else { + String _lineSeparator = System.lineSeparator(); + _builder.appendImmediate(_lineSeparator, ""); + } + String _generateSingleImport = this.generateSingleImport(classOrInterfaceType); + _builder.append(_generateSingleImport); + } + } + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + private String generateSingleImport(final ClassOrInterfaceType type) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("import "); + String _createFullyQualifiedPath = JavaResolutionUtil.createFullyQualifiedPath(this.javaRoot, this.getClassOrInterfaceType()); + _builder.append(_createFullyQualifiedPath); + _builder.append(";"); + return _builder.toString(); + } + + @Override + protected String generateMethods() { + StringConcatenation _builder = new StringConcatenation(); + { + EList _method = this.currentClassOrInterface.getMethod(); + boolean _hasElements = false; + for(final Method method : _method) { + if (!_hasElements) { + _hasElements = true; + } else { + String _lineSeparator = System.lineSeparator(); + _builder.appendImmediate(_lineSeparator, ""); + } + String _generateMethod = this.generateMethod(method, this.currentClassOrInterface); + _builder.append(_generateMethod); + } + } + return _builder.toString(); + } + + private String generateMethod(final Method method, final ClassOrInterfaceType parent) { + this.methodGenerator.setCurrentMethod(method); + this.methodGenerator.setParent(parent); + return this.methodGenerator.generate(); + } +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAMethodCodeGenerator.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAMethodCodeGenerator.java new file mode 100644 index 00000000..cc425325 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/generators/JOANAMethodCodeGenerator.java @@ -0,0 +1,53 @@ +package edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.generators; + +import edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator.templates.MethodGenerationTemplate; +import edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.utils.JOANAStringUtil; +import edu.kit.kastel.sdq.coupling.models.java.JavaRoot; +import edu.kit.kastel.sdq.coupling.models.java.members.Parameter; +import edu.kit.kastel.sdq.coupling.models.joana.InformationFlowAnnotation; +import edu.kit.kastel.sdq.coupling.models.joana.JOANARoot; +import edu.kit.kastel.sdq.coupling.models.joana.Sink; +import edu.kit.kastel.sdq.coupling.models.joana.Source; +import edu.kit.kastel.sdq.coupling.models.joana.supporting.util.JOANAResolutionUtil; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import org.eclipse.xtend2.lib.StringConcatenation; +import org.eclipse.xtext.xbase.lib.Functions.Function1; +import org.eclipse.xtext.xbase.lib.IterableExtensions; + +@SuppressWarnings("all") +public class JOANAMethodCodeGenerator extends MethodGenerationTemplate { + private final JOANARoot joanaRoot; + + public JOANAMethodCodeGenerator(final JavaRoot javaRoot, final JOANARoot joanaRoot) { + this.joanaRoot = joanaRoot; + } + + @Override + protected String generateAnnotationsAndComments() { + return JOANAStringUtil.EntryPoint_generateEntryPoints(JOANAResolutionUtil.getEntryPointsForMethod(this.joanaRoot, this.currentMethod)); + } + + @Override + protected String generateAnnotations(final Parameter parameter) { + final Collection sources = JOANAResolutionUtil.getSourcesForParameter(this.joanaRoot, parameter); + final Collection sinks = JOANAResolutionUtil.getSinksForParameter(this.joanaRoot, parameter); + final Function1 _function = (Source source) -> { + return ((InformationFlowAnnotation) source); + }; + final List annotSources = IterableExtensions.toList(IterableExtensions.map(sources, _function)); + final Function1 _function_1 = (Sink sink) -> { + return ((InformationFlowAnnotation) sink); + }; + final List annotSinks = IterableExtensions.toList(IterableExtensions.map(sinks, _function_1)); + final Map> levelToTagMappingsForSources = JOANAResolutionUtil.generateLevelTagsMappingsForAnnotations(this.joanaRoot, annotSources); + final Map> levelToTagMappingsForSinks = JOANAResolutionUtil.generateLevelTagsMappingsForAnnotations(this.joanaRoot, annotSinks); + final String generatedSourceAnnotations = JOANAStringUtil.FlowAnnotation_generateSourcesAnnotation(levelToTagMappingsForSources); + final String generatedSinkAnnotations = JOANAStringUtil.FlowAnnotation_generateSinkAnnotation(levelToTagMappingsForSinks); + StringConcatenation _builder = new StringConcatenation(); + _builder.append(generatedSourceAnnotations); + _builder.append(generatedSinkAnnotations); + return _builder.toString(); + } +} diff --git a/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/utils/JOANAStringUtil.java b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/utils/JOANAStringUtil.java new file mode 100644 index 00000000..bf520e66 --- /dev/null +++ b/bundles/Consistency/CodeGeneration/edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator/xtend-gen/edu/kit/kastel/sdq/coupling/alignment/joanacodegenerator/utils/JOANAStringUtil.java @@ -0,0 +1,236 @@ +package edu.kit.kastel.sdq.coupling.alignment.joanacodegenerator.utils; + +import edu.kit.kastel.sdq.coupling.models.joana.EntryPoint; +import edu.kit.kastel.sdq.coupling.models.joana.Lattice; +import edu.kit.kastel.sdq.coupling.models.joana.Level; +import edu.kit.kastel.sdq.coupling.models.joana.MayFlow; +import java.util.Collection; +import java.util.Map; +import java.util.Set; +import org.eclipse.emf.common.util.EList; +import org.eclipse.xtend2.lib.StringConcatenation; + +@SuppressWarnings("all") +public class JOANAStringUtil { + public static String generateTags(final Collection tags) { + StringConcatenation _builder = new StringConcatenation(); + { + boolean _hasElements = false; + for(final String tag : tags) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(",", ""); + } + _builder.append(tag); + } + } + return _builder.toString(); + } + + public static String FlowAnnotation_generateTagsEntry(final Collection tags) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("tags = {"); + { + boolean _hasElements = false; + for(final String tag : tags) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(", ", ""); + } + _builder.append("\""); + _builder.append(tag); + _builder.append("\""); + } + } + _builder.append("}"); + return _builder.toString(); + } + + public static String EntryPoint_generateTagEntry(final String tag) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("tag = \""); + _builder.append(tag); + _builder.append("\""); + return _builder.toString(); + } + + public static String FlowAnnotation_generateLevelEntry(final String level) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("level = \""); + _builder.append(level); + _builder.append("\""); + return _builder.toString(); + } + + public static String EntryPoint_generateLevelsEntry(final Collection levels) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("levels = {"); + _builder.newLine(); + _builder.append("\t"); + { + boolean _hasElements = false; + for(final Level level : levels) { + if (!_hasElements) { + _hasElements = true; + } else { + StringConcatenation _builder_1 = new StringConcatenation(); + _builder_1.append(", "); + String _lineSeparator = System.lineSeparator(); + _builder_1.append(_lineSeparator); + _builder.appendImmediate(_builder_1.toString(), "\t"); + } + _builder.append("\""); + String _name = level.getName(); + _builder.append(_name, "\t"); + _builder.append("\""); + } + } + _builder.newLineIfNotEmpty(); + _builder.append("}"); + return _builder.toString(); + } + + public static String FlowAnnotation_generateSourcesAnnotation(final Map> levelToTagsMappings) { + StringConcatenation _builder = new StringConcatenation(); + { + Set>> _entrySet = levelToTagsMappings.entrySet(); + boolean _hasElements = false; + for(final Map.Entry> entry : _entrySet) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(" ", ""); + } + String _FlowAnnotation_generateSourceAnnotation = JOANAStringUtil.FlowAnnotation_generateSourceAnnotation(entry.getKey(), entry.getValue()); + _builder.append(_FlowAnnotation_generateSourceAnnotation); + } + } + return _builder.toString(); + } + + public static String FlowAnnotation_generateSourceAnnotation(final String level, final Collection tags) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("@Source("); + String _FlowAnnotation_generateTagsEntry = JOANAStringUtil.FlowAnnotation_generateTagsEntry(tags); + _builder.append(_FlowAnnotation_generateTagsEntry); + _builder.append(", "); + String _FlowAnnotation_generateLevelEntry = JOANAStringUtil.FlowAnnotation_generateLevelEntry(level); + _builder.append(_FlowAnnotation_generateLevelEntry); + _builder.append(")"); + return _builder.toString(); + } + + public static String FlowAnnotation_generateSinkAnnotation(final Map> levelToTagsMappings) { + StringConcatenation _builder = new StringConcatenation(); + { + Set>> _entrySet = levelToTagsMappings.entrySet(); + boolean _hasElements = false; + for(final Map.Entry> entry : _entrySet) { + if (!_hasElements) { + _hasElements = true; + } else { + _builder.appendImmediate(" ", ""); + } + String _FlowAnnotation_generateSinkAnnotation = JOANAStringUtil.FlowAnnotation_generateSinkAnnotation(entry.getKey(), entry.getValue()); + _builder.append(_FlowAnnotation_generateSinkAnnotation); + } + } + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } + + public static String FlowAnnotation_generateSinkAnnotation(final String level, final Collection tags) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("@Sink("); + String _FlowAnnotation_generateTagsEntry = JOANAStringUtil.FlowAnnotation_generateTagsEntry(tags); + _builder.append(_FlowAnnotation_generateTagsEntry); + _builder.append(", "); + String _FlowAnnotation_generateLevelEntry = JOANAStringUtil.FlowAnnotation_generateLevelEntry(level); + _builder.append(_FlowAnnotation_generateLevelEntry); + _builder.append(")"); + return _builder.toString(); + } + + public static String EntryPoint_generateMayFlow(final MayFlow mayflow) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("@MayFlow(from = \""); + String _name = mayflow.getFrom().getName(); + _builder.append(_name); + _builder.append("\", to = \""); + String _name_1 = mayflow.getTo().getName(); + _builder.append(_name_1); + _builder.append("\")"); + return _builder.toString(); + } + + public static String EntryPoint_generateLattice(final Lattice lattice) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("lattice = {"); + _builder.newLine(); + _builder.append("\t"); + { + EList _mayFlow = lattice.getMayFlow(); + boolean _hasElements = false; + for(final MayFlow mayFlow : _mayFlow) { + if (!_hasElements) { + _hasElements = true; + } else { + StringConcatenation _builder_1 = new StringConcatenation(); + _builder_1.append(","); + String _lineSeparator = System.lineSeparator(); + _builder_1.append(_lineSeparator); + _builder.appendImmediate(_builder_1.toString(), "\t"); + } + String _EntryPoint_generateMayFlow = JOANAStringUtil.EntryPoint_generateMayFlow(mayFlow); + _builder.append(_EntryPoint_generateMayFlow, "\t"); + } + } + _builder.append("}"); + return _builder.toString(); + } + + public static String EntryPoint_generateEntryPoint(final EntryPoint entryPoint) { + StringConcatenation _builder = new StringConcatenation(); + _builder.append("@EntryPoint("); + _builder.newLine(); + _builder.append("\t"); + _builder.append("tag = \""); + String _id = entryPoint.getId(); + _builder.append(_id, "\t"); + _builder.append("\","); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _EntryPoint_generateLevelsEntry = JOANAStringUtil.EntryPoint_generateLevelsEntry(entryPoint.getLevel()); + _builder.append(_EntryPoint_generateLevelsEntry, "\t"); + _builder.append(", "); + _builder.newLineIfNotEmpty(); + _builder.append("\t"); + String _EntryPoint_generateLattice = JOANAStringUtil.EntryPoint_generateLattice(entryPoint.getLattice()); + _builder.append(_EntryPoint_generateLattice, "\t"); + _builder.newLineIfNotEmpty(); + _builder.append(")"); + _builder.newLine(); + return _builder.toString(); + } + + public static String EntryPoint_generateEntryPoints(final Collection entryPoints) { + StringConcatenation _builder = new StringConcatenation(); + { + boolean _hasElements = false; + for(final EntryPoint entryPoint : entryPoints) { + if (!_hasElements) { + _hasElements = true; + } else { + String _lineSeparator = System.lineSeparator(); + _builder.appendImmediate(_lineSeparator, ""); + } + String _EntryPoint_generateEntryPoint = JOANAStringUtil.EntryPoint_generateEntryPoint(entryPoint); + _builder.append(_EntryPoint_generateEntryPoint); + } + } + _builder.newLineIfNotEmpty(); + return _builder.toString(); + } +} From be7c19540ff7e5bfaa24d2d3597ff9bd31bbf299 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Tue, 16 Sep 2025 10:47:50 +0200 Subject: [PATCH 22/25] feat: added first half of transformations to the updatesite --- ...work.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 723 -> 722 bytes .../target/feature.xml | 2 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 16 ++-- ...oner.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 691 -> 692 bytes .../target/feature.xml | 2 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 16 ++-- ...analysis2codeql.feature-1.0.0-SNAPSHOT.jar | Bin 725 -> 725 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 70 +++++++++--------- ...sanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 728 -> 728 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- ...wanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 737 -> 737 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 70 +++++++++--------- ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 729 -> 729 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 70 +++++++++--------- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 738 -> 738 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 730 -> 730 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 739 -> 739 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 716 -> 716 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 722 -> 722 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 18 ++--- 55 files changed, 221 insertions(+), 221 deletions(-) diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar index fbff20b1c3e3f8532dc1bc97afd13ea3e92a67c3..092bca3b01de171b1a57f76fb729ae71b63a8146 100644 GIT binary patch delta 396 zcmcc2dWn@Mz?+$ci-CcIf#E{vL>^TpAZgsdc_GvwI&D%ymBqw8QuWOSB5m(~iZ1zH z!(-mewoT{7x;??`dknYQ_8q%qmOJrmeE#-Q9`o%S;RW};S9)0-&AIyF1NWB1peY$5 z%QaXWRZ^287d>C@I%V-q6Ae3t+hNWEdHQbNCfApwiJf@%HRghQx32QkCGQwNZ)FTV z8CKXHnQ_NK{cHLitu9@O>s6oYZJspB>}URewnxUqDqyj#nbpI0iig)1lut{W{3Weq z?z6{+v)E<_I35%@JEe5vhO6fyqF3ilUh;aEMA(i%nIxszDHDpX%Km#A7jfZXQu(J3 zc@3)^o&W4I&`y?QG6jb1n0nA^O0a>8acZni&Q{}V*H-OTdAUokO*K!XeZ~p3mrr9#yX$KO#7Zn~&$HR{ zeqq)Hf%E2VbyvMRL$uF|ZQZ-#&hoz2tNZHwcCN2dOlN6n?6#V3InDOhE6b_tD<`@> zdfUY5|Kon#hRb^$*cqnIeIRuC#D;v03ttQFNE;>UJiBwgt$FpmH}C7`FHLs$xRd$$ pNPdjuABF&LMkWzvSlCXMU@`>;?qq)^2Sn&jp21|o#?8b41OP_LuoD0P diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml index 87f02e75..1c1cb5a5 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties index 19e759bd..18f5de76 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:11 CEST 2025 +#Tue Sep 16 10:46:30 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml index 68787bfd..3d41dd31 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml index 09d11956..75930636 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar index ead2abb9125abf3952adc19101c90d3a6bee12cf..07a900f2686c20bcf0407da5be8216206ac61709 100644 GIT binary patch delta 368 zcmdnYx`mY|z?+$ci-CcIf#E{vL>^TpAZgsdc_Gvwx>I@LKdFg(Bqexid>OFBGoNN;+u3oqw-m@8rql z5B8s7S54V9d+AM^v&+L@CYc=$t>0oQYAUg6=B;M|>+jCE7F9Y~<*>n#4T^Ig2?XC% zZ9MP#{c-%eR@UCI-=!B~4OX%8etg|0;AT6;>+90U%eT5uTrB0laQcSy=Y;Q0qFG(HnDHSLxnt8=w4u+Qkzj(n6k zCy8Z}*0I#sN6U|YP3a5|4asS^anGUUTl;1qdx7MgrJ4qX>m@f{DCAy$uVZiU1apD? zXWUg&cFkUTQ|IjR&m|Mj7K*;D_hD`BlUi49c||(>a>VNOlT#$xB(^QN%9OO~mdb~n zFBbm$=@(^?Q7gfImo1c6q9guWi@~dfAus(8zdjb{(zh=7!C49WcA3R;8WyZK54z6z zKIhQ8+AlJvj@x*2?|XL1{Lfvbe}OZkmISo;TK!|qbMCg`4bijqZn5b4sl$Kd|8@0Q zOHZ%XDfk*B{44Geui(4TPU#IEf6lL5lpo;D$RxrH3%$v|7)^n}H`$QM0TF(atC&pK JUNbTP0RYQBpW^@k diff --git a/features/Partitioner.updatesite_feature/target/feature.xml b/features/Partitioner.updatesite_feature/target/feature.xml index 56e6c453..8e250075 100644 --- a/features/Partitioner.updatesite_feature/target/feature.xml +++ b/features/Partitioner.updatesite_feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] diff --git a/features/Partitioner.updatesite_feature/target/local-artifacts.properties b/features/Partitioner.updatesite_feature/target/local-artifacts.properties index d3d5af59..61965f4b 100644 --- a/features/Partitioner.updatesite_feature/target/local-artifacts.properties +++ b/features/Partitioner.updatesite_feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:11 CEST 2025 +#Tue Sep 16 10:46:30 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2content.xml diff --git a/features/Partitioner.updatesite_feature/target/p2artifacts.xml b/features/Partitioner.updatesite_feature/target/p2artifacts.xml index 6ee39676..05035003 100644 --- a/features/Partitioner.updatesite_feature/target/p2artifacts.xml +++ b/features/Partitioner.updatesite_feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/Partitioner.updatesite_feature/target/p2content.xml b/features/Partitioner.updatesite_feature/target/p2content.xml index 8dc2673b..4187dbbc 100644 --- a/features/Partitioner.updatesite_feature/target/p2content.xml +++ b/features/Partitioner.updatesite_feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar index cae46cecbbbf4291a8687c5ccbcbc0f3d30c9763..c647b3edf701eceed6473d36ea039522ba4b8378 100644 GIT binary patch delta 240 zcmcc0dX<$Yz?+$ci-CcIf#G)OL>^TpAZgsdaXZu?dik~D=!v`4n6@mM__(kBi=iZM zdx?zff|w@J-c@std))qUZfo(^Vwv*T;|a%COC8LQJZgK+-T&+S^|u_IpDn+8!h3xd zFYku+ix(ymcrxHep?Ax4_<|TpJZuZPcC0 z$NT^P`!APNe3xG=u-x#9ooiNamGRQGk2|yzr=(@(m%ZnUSrK+UCWmX+qZjs$Z~P}8 je|WBUaeRO`Ba;X-%o~%XnM{HHm>k690Qbn`SxnXdU%G0( delta 240 zcmcc0dX<$Yz?+$ci-CcIfnlQeL>^TpAZgsdG11!~dS5sM%>Jb|?#%*I8FC-4(=)if$+hENP-}$1)f>~i z+S~sBFR#j+wCr-m4w;Cr%&ceK_RhR?t?-Dpf!F3O=DW+;^+Hx>>zT2}7Jiwp@NN0Y k#|6)iUDOZoW@Hj!hIwPMG?OXNACrTa9N-?AJd4R103e-h8UO$Q diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml index d0e30062..cc3b2554 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql" download-size="28" install-size="121" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties index 0c8bd5bd..9b458b6f 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:33 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml index 076909ab..9a0eac2c 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml index 2806a6ef..31a2eec4 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml @@ -1,29 +1,34 @@ - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] @@ -33,35 +38,30 @@ [Enter Copyright Description here.] - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar index 0e0bdd766274da2174ad87213a788fa8908cf8cb..150d1457507e1f77fc279db4a69114882bb12b7b 100644 GIT binary patch delta 382 zcmV-^0fGM51=s})P)h>@3IG5I007%nkqjjQ+f|V>fC$@FFk7KumF$tbCVv3~W`is$ z2V?Z2C*z^EAEVN>we1}E>#a~>A%TnAWy$xv@AGYIG2b*2eSvjCs}c`Mh7l;Hxlnb9 zU!E6(37*fAVhPl@7810(1TQi0maK&*YwA2m;`k?Fx-~Kc36-K&4Jc12W8fTBRBoMc z`G*dVB$naWCh0rK5?4EPP=7@hd5!L$s>kXN>n|DZJj=(~ba<6bMk72+exZVcV^$a+ zFx1-6x$@pzr)k%91U9rW62g*A+T%iWU;lciJXo~Y?}l!BRV%PS-gbt5G)kE^TPy07 zzo@3IG5I005CokqjjQkxP*?fC!OGFk2!7=k<}hCVvqWvq2V> zgE4y1lkrg7k5TE`+I9~7^;W2`kif<5vgCW-_xZN9n5`R$zQ8)6Rf&fr!w3}9T&TLl zFVFMA6`oC#Vgb~*7810*1TQi0maK#)E9yK*;`k?Fx-~Kc36-K&4Jc12W8fTBRBoJb z`G*dVB$naWCh0rK5?5PvP=7@hd5!L$s>kXN>n|DZJj+MfWH`<)^D&+#zfi%!F)NG@ z7;0_kTzYS=)3ob40&ChB31P`5?QtQxtAD*y9xR&gc0;$lswG$;Z(Bn@8l_B|jTQCM zpH=RuW8uv{eoDEIMxhi8l!LRn$Q;WaV)T?M#-hl`wiYTj{QI}#Lq8GMosydJffL_Q z;)}dD6UuoiWgHDhliuvy5jaq-GL)@Kyr43Cfi%2Kk;Wr8O@07SO928D0}22D2mk<) cOOqY~H3E@KlT`vh2$4%LTOtJK^^=_fJH*DT7XSbN diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml index dda6d5da..1b39c2dd 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana" download-size="42" install-size="159" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties index 18506b7f..1e6d4b49 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:33 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml index d41b319b..b812032e 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml index 2b885a2f..5e5155c6 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar index 35ec71aea0328659bc4891f704d350dece4ac0fd..c647b0b078d4dde0a974635a86eae9cf96fbfe22 100644 GIT binary patch delta 240 zcmaFJ`jC|;z?+$ci-CcIf#G)OL>^TpAZgsdaXZu?`sM73+KIc>m>iiWKAu&7JH`Q=4b$e9N8`xjc*2 zbi?<#3%l7e7oOcV?dhr5P`Tjehkh&9c~-hK3#2lhIusgvV$Nwf<|0W3mPS)Wv9@ delta 240 zcmaFJ`jC|;z?+$ci-CcIfnlQeL>^TpAZgsdG11!~`ej$J-^AT&Or0DPAJ3|HESk;t z!r~WqDpO9N_v4x#ldbFHEz{pU+L0T*Uv525)BQbN)|UP6Uf+Lq%F$Qsx9Q0>!CRZ8 zZu~xX!L@nIg|z6?MNijh^{*^`_*ZcM5}QSi9h(?ZAFk3%IhWecxOWLxgn(p@*Gi|u z_V-w;R*CEiU9s~; + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana" download-size="28" install-size="109" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties index 3d22219b..229be32f 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:33 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml index 9a9c7392..d59bfb7f 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml index 87642279..fafd61d0 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml @@ -1,29 +1,34 @@ - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] @@ -33,35 +38,30 @@ [Enter Copyright Description here.] - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar index 94af076b97efb73dd4237290d673a4d87a0b494f..cdb0488e1efa3957c72a64d96caacba444466427 100644 GIT binary patch delta 240 zcmcb~dXtqWz?+$ci-CcIf#G)OL>^TpAZgsdaXZu?y0HIM;>6u*Oj{OBd_1Xsul}#S zaveb2-7ZvJV zaKNswt<1!;bz}8%vC{>?mCN*69~b|b^-0FpDTHZD`|MpuVooj7tn!_jv zznAYX@3+d_CdE5lcKyDE%Th1S(tOM8?xVdp?_&PhJlPieRTs_H1z)y2{zLZD53kU9 je)kl9GX{7wGKnz5yfImx$rR|1$ze^TpAZgsdG11!~`gV|K^Tge1Oj=7PKAu$nR`h#n zKi?+i5YG>XG^-0HA3J&}mE)V?`R%uLn`PspTXtNw$}cpmT2)_vjZtRioN3DbYgegS zB*?ovThCf@=*HgQ?$jMCZGxvC`e<3_TiK_ksKt2euy1UVUg~9$z015ds%*NUGsTbh z|CjGC5EmuUxXf3ZDnJKrJss~OVQSH7H+{D-fyW~r9H jdj5pJ3<2JZOd`xMZ%meFG6ni$au|~X+#{3cF + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis" download-size="20" install-size="108" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties index 844b5ec0..884f0cc5 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:33 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml index 5f3f88ec..ddb1d15f 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml index 4470b6a1..13eb6c03 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml @@ -1,29 +1,34 @@ - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] @@ -33,35 +38,30 @@ [Enter Copyright Description here.] - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar index dd5c0eccfc9cab559627ac1d65b8527be7f34ec3..c6fb546d6c8755b04c3d2d8c5db3f9cb396f0bf0 100644 GIT binary patch delta 393 zcmV;40e1f41>yw^P)h>@3IG5I007%nkqjjQ+f|V>fC$@FFk8OQYR8egC4WE^L6v|i zJ|>n*?NoIz@c}M}ZEUB3{`wklAwq(w$(Fn4ea_D1qx}}iH&`dNDrlQ!lz=L=kZM)X z_qSQAPe;QfUjp})g@l|QDGCarVjJn%hC2_)oY=8aR|W&f7QEaTtG}T1AvSy$u)_}Q zJtzS}aL<>hYpysRoOCRP(|?$bd;wU{aiCu3#A`B*Aelt6^%BuPqHfZ;< zez!}9$+0OH;7TjaaUfFJkiYicJf~@0*9`W2YY@Vq+qBUa&~yC9RC%yucAk?=8c}Po zz&=lgCK{!sHU}$LYyVJr>ADq;FZey>1&uyw^P)h>@3IG5I005FpkqjjQl1q^@fC!RHFk7dUj2e-#0R(>wy~WC`s-_`3lS1bO}5-U?{jvp811)6zQ8)ERY|)nqXbl?g;cAO zzP-*meL5N@#S*x$EhOahNKsM{HQPwfHr#nY=EROwx;7Xn`ik$Ht6=U z$Gk^}$+4*r;3_N4aUfFLkiYicJf&&VGz|89YY@Vq+qBge(BJs?sq$dS>~~HwX+^EU z0{b`_+Gvzk+8nH0t^Hl)x$9auKI6BPXEX{?R-hc*)y1A`**v1RR7w$xB7^lxs+jQa zD?u;8LN^LE7ab?RA^hM$t0tB695I&qy;kYoMqIjTWx`w~U2+T;l7_PtY23zP@&iyy n0Rj{Q3IG5I005FplPCf;0+LIUUjje~l1ngKr + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis" download-size="19" install-size="86" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties index d269f642..ff2821a8 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:34 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml index 0a6bd376..3639c761 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml index 9b199e05..1f7a3262 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar index 43f3f44ce725cc193e65d6f439c6c4c9f70e0461..f42d763fcad86879de86c09ad2be0d009b1200a5 100644 GIT binary patch delta 397 zcmV;80doG@1=@3IG5I007%nkqjjQ+f|V>fC$@FFk6gqeN~aW8Gp@g0wENI z_wy8lz06OvvCWKT($+=Ow3~L-bb)YH6oCTM(LQ}qsZLCERoIZ+bIx~xTaGttiN3)) zp;d)*l3@gjX)e^f!tZaB-Vl#RNjU@R8w&~AFTpDeydf*$$%;A;k~scFm~M;=Mlz*r zWvpHT^C6ZjHC42rjDd6EB!9O~I1&?ajFfZ=vcgZV^-GPsM)h9ZtE2o+*6lRxA}a>j zZGMvt`+Yo0cA}DlV^)|Q88tR!F1$B)Y1+0efel?738B+<+R+8;A^zi0d9Y}5=nXw| zq84C*eC`QdYlJdwwpPp+{wngQItSh#?U#^8YXnNcKsmUIi<)!Tb568gLPc8y8QIK* ziV6So_xO~?b*rSNyywIZRJa&)YC<_rrHrM#$U3!ab8u2M%7ktzJfku^LmF;Wrg82@ r$uCe#0Rj{Q3IG5I007%nlOO^$0^3!SR{}r?+f^`IjB$Nclb-@RqL;5j delta 397 zcmV;80doG@1=@3IG5I005FpkqjjQl1q^@fC!RHFk5bDIxdmB8GlP}0wENI z_wy?VdznX~ePl*6Y3rhC+D*G^x$sXn%cCQ70z4Dr`vZIp@2;El2B>L_c7i z(5k{Y$uI)NG#6@C;g9!m?-q}SNjU}T8w&~AEx{`cydg{B$&xw`k~scNm~M;=Mlzvn zX{=rV^C6ZjG*z^qjDd6EB!4$fI1&?ajFfZ&vck`A^=pm1M)gkJtE2oN>vkG;krn;y zE+1q!#Q+bJt*GSSm=$JAMvV=bbMMW4nzn6AU`Lg;jrc67nIkNBm`P|+4aMm95{ zV#5FYJwByz-72Xm?>X@c6)yUnno!PDDPt)wvQF*V9Gp~*GNGFaPpJ&gkcJzTX`H)Z r@&`~$0Rj{Q3IG5I005FplOO^$0+LIUR{}r?l1ngKZfH6#lb-@R=l!T} diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml index 5d335a4f..9d25c667 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis" download-size="25" install-size="120" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties index 009e27bf..a2dc7650 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:34 CEST 2025 +#Tue Sep 16 10:46:53 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml index 223920f6..72a9de09 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml index ee20282b..bd5a36fd 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml @@ -1,6 +1,6 @@ - + @@ -11,15 +11,15 @@ - + - + (org.eclipse.update.install.features=true) - + @@ -38,8 +38,8 @@ [Enter Copyright Description here.] - - + + @@ -51,11 +51,11 @@ - + - - + + (org.eclipse.update.install.features=true) diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar index 7e750734dc5d202b8b64bf967d892a70b38b0b59..4b22ca0f1fbe4f4e3ce2b2d23e841019df861ab0 100644 GIT binary patch delta 393 zcmV;40e1f51>*$_P)h>@3IG5I007%nkqjjQ+f|V>fC$@FFk7tp&w`P=CV$+bORF(c z56iM$w$ri$!l$AL4Ct!+>xas;F|nu78{hlA_h`OiwA)Jb4b};*O57zGMxdDHLM==D z{x<9M@o1P73!uKTkf7rcyu`pOvJswasPiC+<6ng7%E$ncIb|DT^%|HDwq&iTqB-n5 zC=Q%cPZv_x;ZE+Ia3p%;Xn!v09At@~UdJzE=$^K)iJXkb4)kKqq)e0<- z&tpOpjiF4Ny%o!qZ;d>wt^*&>_^rq@8Uv+Zpd7TuMa^~Cb3|`NMM^9N8CflbiVpw1 z5cuNDb*-ePyyL_VlsNA-WNOHCe$kNg39ne((tq*jk`EZegRNR n0Rj{Q3IG5I007%nlPLl<0^3!SU;;o0+f^`ItoqM_lc)kafBm?i delta 393 zcmV;40e1f51>*$_P)h>@3IG5I005FpkqjjQl1q^@fC!RHFk9%22?>$ACVw`kORF(c z56iM$wv*Wb;Zsor26WZ^^+RRanCNNr#`k{jJ({l=Y&Q~pgLOiy61Pc)5h$j)P>T|O zyiZzPJm@FI9H_4>BO4r|_!nWiGBSW)*XbxKs ziUa4=)49}jxRX049EsjIntw|=16ktdx8ds$d5y-AL!$_`hLQXun)Sn%XZd~BYj?7T zyo3A6UQ}>!%nGxwgDM;Bm)@JlG_C8Jz?N=|giwEzHgo|!+E2&IgGG~LO*Cp)Ex`i$ zJR~&H7|OKSS+Q99n~^8gW#H2ZzZQ8yW1tial!KdbQF9sg647f>5lV|eMpg@plc)ka$=a`r diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml index db92f809..47831de3 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis" download-size="24" install-size="98" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties index f2936cab..c4f1c7d6 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:34 CEST 2025 +#Tue Sep 16 10:46:53 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml index 30d5ef21..83251582 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml index 5d671d4a..41edf245 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index 1b1a19a6222e6dbc822e0f438a616431e86cc77d..b075bcf99e2e970fae2918cd7d6fe72eaea05498 100644 GIT binary patch delta 383 zcmV-_0f7F@1@3IG5I007%nkqjjQ+f|V>fC$@FFk423T_%yc8Glc20wEB^ z@B1k>++|mzjcs=IVD;psNqcH~pfDE3yxJwE*UWg)BcVDQW^D(6#h*&723MPHZXH!C*8}r-S7X zQ-CRkdnX+|9JUBM;K4@}O@DzTB_jI-tjQ#*Ugn+YS#~bB8;rYG_6Fr+_n{p2`(%_I zM3n%?tuzN$9&F57d2gPIqG=imJGLCDSvK7t-u2PI1<{{ z1m)W7tz54BUF1b|4V+x;w~!ZW0;1%g9Nfhv%{6SEthZ3fmOuu>Qb4Md@GoCZe#3-r z6lx|qPJTm82Cb4*&NIY6D)(mKR~3|Dd|i_T!}tV6yiHZ4SsP_PP)h*<6axwX00;m8 d+f|bi0yP5LRg*~qKnUAaFk423T_%%}0y~eqrZfNm delta 383 zcmV-_0f7F@1@3IG5I005CokqjjQkxP*?fC!OGFk4?gDgKeW8GlP}0wENI z_wy?z>}5t1?ISa~u)1>7q+K;#P`E1b3dp0Q{q;pfotWyXup;-I^IhOpqwN~=Z?H~k zRg*3)Ne+r@A=RQL?{Cx2BN+{|Y7Wc?3t4_xQq%-QpeyO=ia8HRo!C&WgTZK|P6x{& zrT|k6cTPIGKWq@Tz=Mw{ntuXGN<{VrSd(#7z0Nw5lk8M(HyC%X?Dfm1?x1|=4ahLt ziz)$*TWR*LJlL4E^xixdMbk7Cwrp(>ViW74rHj^M{KrIju=(`ZQ~uJ5T7m`oc_6f{ z3CgwES-DvHyU4TZ8aO`NZz0dt1VqU}Ik<~UnrqlBS#P0|ErAS%g+Np(;a|R-T*8EI z6lx|qPX0hm`mK^w&NIY6D)(mKq6*3|zN*QbVSIuj-li(jtPQhYP)h*<6axwX00;m8 dkxP>j0yP4WOOr_gKnRgbFk4?gDgKj@0y`X7tAYRk diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml index 24c67362..b85721fe 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index 8a199953..43b273bc 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:33 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index bc9b50f0..bb645929 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index dca057e6..a89e3256 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,6 +1,6 @@ - + @@ -11,15 +11,15 @@ - + - + (org.eclipse.update.install.features=true) - + @@ -38,8 +38,8 @@ [Enter Copyright Description here.] - - + + @@ -51,11 +51,11 @@ - + - - + + (org.eclipse.update.install.features=true) diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index b5c65a1505a5e22e7a370d4347a5ee569f358a16..8f02ec07bd4b160ca06beb45c582f4574650386a 100644 GIT binary patch delta 389 zcmV;00eb$@1=0l!P)h>@3IG5I007%nkqjjQ+f|V>fC$@FFk97D$*YmO8Gp@A0x=YY z_wy8!?&%B!37Q!QQCJwG8(kR}wY|(#N?ZHmfKP9M4opa3WxHu|&pF?1Z;R<>Ez%z_ zmMdAJKF(1Jk}Ae!Rid}oMQ@CzlcZPzao#|Z?iXhz0_O3GJG>&+fxwo1W2(Fs!HBK$ zhC)aIB8k{qZt<52N7w-ME`N}4%tJ9ykWUaLdVHBZ&wBG#)mFRhg+0gzH~DRUl#ho) zG)Z=%f`O%m>zyn0CPdZF>ANgzng+v$thIp9-a6~(g7pypK9>$mx;V6yK6IjLFn~Yy zgswG0snT1+tJ+;f9#!YS`=k95@@S1f!6`@!S8-8u4tt8$OQ>jzAVw{G#br$RkAb68 z7E_HBim;yLzYu2H@6@=ojtJ3~MxD~NPjFIssR><`Xh}qPgDhO9$l_m{B!5s#0Rj{Q j3IG5I007%nlNbUu0^3!SPXa&)+f^`I)mF)?la~TJ6{oL% delta 389 zcmV;00eb$@1=0l!P)h>@3IG5I005CokqjjQkxP*?fC!OGFk4HLrel%28GlPp0x=YY z_wy?z-P0LJ#7AZzL}6i!Zggc_)b;|EOI!PJz+Z2H0uvHg*>0NLbIy0$+iJL4V*Ufx zNv&$qr6tKhaV?~p)#UAU(zzkSK~_zH`CuW-w@ZqefCzLUJzX&80jU$;lFw6vMTXj(+KQgcb1MBY%meJdy&DeFE0x@n!Tp>WufQeYM?Q+`Y1QRo-^{<#n%5 z2H8eb32@v>vvK9Y#;CdX=B_B3rlGK6OM?*GTNW){wC>{H$I64vC%cyNhgQ@aEYOcF zp>0i2uFcxY+1y`59#p5m`-A-)@?cFslpK_Ui@2mYg*_$fIaIPGkVe5UlPV?r$H2)k zOXxQ3683u4C9NMOc};EDB^XhBK@^N_6JZ)0Rj{Q j3IG5I005ColNbUu0+CCTPXa&)kxMXJOOvK!la~TJ+wQlv diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml index f098da09..30e08a9d 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509160844"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution" download-size="11" install-size="16" - version="1.0.0.202509160726" + version="1.0.0.202509160844" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index a3b9eba6..ee638ff0 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 09:28:33 CEST 2025 +#Tue Sep 16 10:46:52 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index 5c212e58..42648466 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index a1f2725e..dfcddffd 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + From e677a9c144ddfdd72880d1695b736abfdd964cec Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Sat, 20 Sep 2025 13:03:12 +0200 Subject: [PATCH 23/25] feat: added remaining transformations --- .../.classpath | 14 +++- .../.gitignore | 1 + .../.project | 6 ++ .../org.eclipse.core.resources.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 1 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../META-INF/MANIFEST.MF | 1 - .../pom.xml | 15 ++++ .../pom.xml | 2 +- ...work.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 722 -> 722 bytes .../target/feature.xml | 2 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 16 ++-- ...oner.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 692 -> 691 bytes .../target/feature.xml | 2 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 16 ++-- ...analysis2codeql.feature-1.0.0-SNAPSHOT.jar | Bin 725 -> 724 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 70 ++++++++--------- ...sanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 728 -> 727 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 18 ++--- ...analysis2codeql.feature-1.0.0-SNAPSHOT.jar | Bin 0 -> 733 bytes .../target/feature.xml | 26 ++++++ .../target/local-artifacts.properties | 4 + .../target/p2artifacts.xml | 15 ++++ .../target/p2content.xml | 74 ++++++++++++++++++ ...wanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 737 -> 736 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 70 ++++++++--------- ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 729 -> 727 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 18 ++--- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 738 -> 737 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 18 ++--- ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 730 -> 729 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 70 ++++++++--------- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 739 -> 738 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 18 ++--- ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 716 -> 716 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 2 +- .../target/p2content.xml | 70 ++++++++--------- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 722 -> 721 bytes .../target/feature.xml | 4 +- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 18 ++--- pom.xml | 6 +- updatesite/category.xml | 4 +- 71 files changed, 425 insertions(+), 272 deletions(-) create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.gitignore delete mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.core.resources.prefs create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.m2e.core.prefs create mode 100644 bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/pom.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature-1.0.0-SNAPSHOT.jar create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml create mode 100644 features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.classpath b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.classpath index 2869279e..5050774b 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.classpath +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.classpath @@ -2,10 +2,20 @@ - + - + + + + + + + + + + + diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.gitignore b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.gitignore new file mode 100644 index 00000000..b83d2226 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.project b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.project index c17f8892..f943c152 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.project +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.project @@ -25,8 +25,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.pde.PluginNature org.eclipse.jdt.core.javanature org.eclipse.xtext.ui.shared.xtextNature diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.core.resources.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index 99f26c02..00000000 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -encoding/=UTF-8 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.jdt.core.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.jdt.core.prefs index 62ef3488..20cc7b58 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.jdt.core.prefs @@ -4,6 +4,7 @@ org.eclipse.jdt.core.compiler.compliance=17 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning org.eclipse.jdt.core.compiler.release=enabled org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.m2e.core.prefs b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 00000000..f897a7f1 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF index a12bbad4..72f4f07f 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF @@ -19,7 +19,6 @@ Require-Bundle: edu.kit.kastel.sdq.coupling.models.codeql;bundle-version="0.1.0" org.eclipse.ui;bundle-version="3.201.200", edu.kit.kastel.sdq.coupling.alignment.pcm2java, edu.kit.kastel.sdq.coupling.models.extension.dataflowanalysis.parameterannotation, - org.dataflowanalysis.dfd.datadictionary;bundle-version="0.1.0", org.dataflowanalysis.pcm.extension.model, edu.kit.kastel.sdq.coupling.models.correspondences.edfacodeqlcorrespondences, edu.kit.kastel.sdq.coupling.evaluation.supporting.configurationrepresentation diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/pom.xml b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/pom.xml new file mode 100644 index 00000000..e47eeeb6 --- /dev/null +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/pom.xml @@ -0,0 +1,15 @@ + + + 4.0.0 + + TSE_Reiche_TransformationsAndModels + TSE_Reiche_TransformationsAndModels + 0.0.1-SNAPSHOT + ../../../../ + + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql + edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml index aa967999..1ccaa17c 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana/pom.xml @@ -6,7 +6,7 @@ TSE_Reiche_TransformationsAndModels TSE_Reiche_TransformationsAndModels 0.0.1-SNAPSHOT - ../../../ + ../../../../ edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar index 092bca3b01de171b1a57f76fb729ae71b63a8146..b7da7e0374764a7942e8f7bd9c6b58b8ff2ab90c 100644 GIT binary patch delta 393 zcmcb_dWn@cz?+$ci-CcIfk7|BWFoH$Gl(*&=KxaCjc1ovPTVb7@95ubAkp^z57#B@ zfD5XZ8BQDBJvqC|=-8ES#U|6XWp?NMtJ=Nxc0qA>LDT!%`O90@&(Vn%tZ&>HbCT<+ zrkkP1Dv9acT($4rqucPbp8{3%zCX@^8pV`^2#-6q5u$uZE*_0om|MUtB51F%` zEA9!DUF)pM?9F@q-0?@}Dv}@1*>`r+zW2cqlft+?R%UH>JQu$G$Mou#2abGxd-Cya z##M~WFJB)sSi`0nT9x`^QK9(M-&ZykY+FA+_}ywp4GY%Hhl})5`cnB9R{4o$Il3=# z-TuHx;NN!fKPCDX7!QQ#w<_su{3ESZVk^bp78B*(!m&B9&UD7#pYK02_1h|bUaq@& jLt*I`<^XR-CJ|- zlVOGJkr{U!)W4?R(dyEbxL#lN+2%>3%zozoXM1E!tO6F>npr)3r+9dMLHV?_$zRe+ z=01CDIE!s|fa5`dvr|epZn%0bB6@Y+I+B{B1rG-Im`spL~&J@cZ}u^vri0oz}S% jfAr2~vk&lQWD;S9hwfxaCKFKbP7YwQhllUv=}guDvbeH3 diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml index 1c1cb5a5..8e85e805 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties index 18f5de76..61172dad 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:30 CEST 2025 +#Sat Sep 20 13:01:27 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml index 3d41dd31..21186035 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml index 75930636..3217f0c5 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar b/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar index 07a900f2686c20bcf0407da5be8216206ac61709..dd0b0fc3116d55b38ac6d9dcd667b948c9f16c9c 100644 GIT binary patch delta 371 zcmdnOx|x+Xz?+$ci-CcIfk7|BWFoH$Gl(*&=LAyGo6kC2kes+jqTbj4u!6+#_kTrN zen;Kfv18UY>lN0O9~P)5^Bmed%|mnH6+ipEImuIf%`N`L*YQ_sOq(6H$lqY^i;&LC zGZI+3N@G^+I&$8B^-U)I)hi;Hw>CF&yzP6STDRmF*Xy8!M~=l=3&q9m?GdbAzT~|^ z{~31GlwGqY=J|mI?>gtXfa_|s)>Fqb&np%F?Y^dA zqTIb&r-0Wh_*>v3)2Z)5JEb>x{5ijJk$iwRBa;X-Jp3mAW;6i>;AA5vdqfCMu3|D_ Jd(FrI1OROJqFev~ delta 372 zcmdnYx`mZDz?+$ci-CcIf#E`^!9-paW)Njk&k3ZWJC!H?lbX0kqTVt1u!2a-`=6pb z-_lUD7IyLCxqwXRJ0_uBr*uBXc$zYyM%7&N6q zYPm$?f=y|QG(Ud6oVDq|X)Ud54ms-;opv97C1fv@JF`^tLgD(Xq=N?B`S&{ZPM%!; zVE-9*)s$Vcm)^8FyFC15lG)+V`YooSrV^`W-g*|W{_c!xQKger4jUZVpg8xDK=4h~ z#`CV + version="1.0.0.202509201100"> [Enter Feature Description here.] diff --git a/features/Partitioner.updatesite_feature/target/local-artifacts.properties b/features/Partitioner.updatesite_feature/target/local-artifacts.properties index 61965f4b..ce75c7ce 100644 --- a/features/Partitioner.updatesite_feature/target/local-artifacts.properties +++ b/features/Partitioner.updatesite_feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:30 CEST 2025 +#Sat Sep 20 13:01:27 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/Partitioner.updatesite_feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/Partitioner.updatesite_feature/target/p2content.xml diff --git a/features/Partitioner.updatesite_feature/target/p2artifacts.xml b/features/Partitioner.updatesite_feature/target/p2artifacts.xml index 05035003..7cf080be 100644 --- a/features/Partitioner.updatesite_feature/target/p2artifacts.xml +++ b/features/Partitioner.updatesite_feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/Partitioner.updatesite_feature/target/p2content.xml b/features/Partitioner.updatesite_feature/target/p2content.xml index 4187dbbc..39061a55 100644 --- a/features/Partitioner.updatesite_feature/target/p2content.xml +++ b/features/Partitioner.updatesite_feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar index c647b3edf701eceed6473d36ea039522ba4b8378..ae897e7ea1176fdee2f46ecd9d420ecbdd4e1510 100644 GIT binary patch delta 391 zcmcc0dWDrYz?+$ci-CcIfx$e(WFoH$Gl(*&=LAyGeS&^JttReKtzYG`nx!RUW`x$( z;Hw9>>K}Y`%xvRjhxz;1Vmc-yWE$Q3T>IRr(DJUS$G(N7r(SeD(^<^2#USYAu0`+j zyD!f0Q}^7-^lrD9P*Kg4H5w=Sa;KzAzq3&&E;`-vQm0Mf@rtaw4c~gW8P64-Eqp&k z+sQCz;!!iH*Awa)!%E5$+&7=77s@|j^I-jH`-S{v>qgEgQ$F9k%5=*CyZ*LB6R*~d zzr(I(*N0awTi5!z_|LRYGQCbAOk0|F?>Z54dYWOCw`g);%Er}G`*{EVfB)r@im%Q3 ziv^ZNuh_Msdf1JZ&VAldI7R$tLfL!1m=%7}dS;@rg*@{Wc$aHlu6V9?Qa`|(kx7IZ d9;TCJm`p%{Iysoh9ucaOXET|w@h~v}0RT_#sU-ja delta 392 zcmcb@dX<$oz?+$ci-CcIf#G(j!9-paW)Njk&k3ZWmtQN6ww}00wSLQ@P$s7>J~~rx zt$da6#(Tq#jm~dOE-YWqD6XUuF{|f$&HbHzbNtIhC*^0XG1|32(_4d4wZmvzK(ob)+MYEq+bH^z0mQ?M8!jPrw9ITJEGGy<3wqyIL zw0#oWPB=;PmY$g2z&cm%#zB(}^+zO)KL5D=i2rr|%lkSf%1%b*c7!GZykz_O<0%OEwFbf*G7d^8+E7h@&5n+{>vp5 zTi@ju3oJLhV&|IGTV=d-?cG}d=!L!G8~@42AD-)793SA# h$RxrH57f!hOeUaEogBnuj|kSuvzScSc$pZ0006Edu;2gy diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml index cc3b2554..b790ed4b 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql" download-size="28" install-size="121" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties index 9b458b6f..3947ad1e 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml index 9a0eac2c..3daf34b3 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml index 31a2eec4..9c56ca24 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml @@ -1,34 +1,29 @@ - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar index 150d1457507e1f77fc279db4a69114882bb12b7b..0ab796f1658ee971eae89139d99ae2018b09c214 100644 GIT binary patch delta 407 zcmcb?dYzRwz?+$ci-CcIfx$e(WFoH$Gl(*&=LAyG4zHG_*iPIdQSa}6$Uvg~{cjQ9 z_a*g8oilhht&r)t*gdbO{nox7uj|*g6+c+M-KnvaMK5o<>if^XZQpO3wz*XMqIrb+ zmQ@9QMm-LOXIrzh{`@kMk9~a8L{r?MHeJ#2w)Y1v=JzMODmE=T*R0Z4FSyKF*?B^M zrqtD@Pc24l=K@`y9^(wJdG(>*BT2F^cT!!$nu5Kq?xiUcufKS>vu@S*8wDo|#3K#Q zsku&j9@)11q_q+qMwz)Y)Z1QD~>3H|*{=2E{-OqO4 zy>NFy7N^*W-`5O!+%zwzCA)6^B0iP9~aL@-Cl^ z8b+J4Te^7v|9kr*;z;TGCCh4_9N`c7u}b1hOVKMl)iqnA}$dw`~e-6%T3C vpU^g4^K!+LWheCmycwB9nBieOS)R!R6v&gqnCuauJb50I2^&8X0}ucJ#yqq8 delta 408 zcmcc4dV`fWz?+$ci-CcIf#G(j!9-paW)Njk&k3ZW7bZ-7V>fY+M7^W`Ap?oF_rFDb z-XRn_KX+ov*)MW!l3VYA>x%2!&gh1h|S-_P(3H>i8@E*ZPw0Y)&7) zSyD08*G<{RyKZ4qb8?u3yup=Q7j}NS7qdL`dMS(97DJ&!lYDPIb}EVgU$xvOV#|&9 zZF$w9+8Z41m9^EGc+E76)_yg0{|cLc<%ecF|C#eipw~%LLW5nrbfV={+aoV5Lw$Q( zCr-@O4axcOJ^%P|rFGV-rcasG_boiKc#pa8sY8Q$ZU@4dMsXc4s5Xv$jeJxh#g v8cp{2OgyG+?p? + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana" download-size="42" install-size="159" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties index 1e6d4b49..61702257 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml index b812032e..c43bad8b 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml index 5e5155c6..c39dfd6e 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature-1.0.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..896cf3668ae4b1e0444084ae619922667d3585b7 GIT binary patch literal 733 zcmWIWW@h1HVBlb2FwZcFW5mj= zMg|69W(EdspbOGc6H7{qQuQiwbJk8eop;DU!1eo2uG7_X+FO1FFs-Usb0Z`xJXAc- zhNZhRH)nZcU2SYZW(&(|wbMJF&+{~ST5@0MC(G+4VWMXv-8ff7aj%@!wQrw}`}Yzn z&r_xa_ai+{e4Mywk%HB>sq=Doer`C^DZ9Ef-JqdoaZU*LDdQW}0Zc6q=B*F>9#d#z z@v>_{gY2do-pPia_z!gHDY-rql(u#4tME-@td0AtbolP!=#--t)f$^@&Kp^I);TR@ z2#?OJ>6mz~?O*TrXNJDN_wjRox~9-__jbty?iVZn zFGbC6o_hA!{g8RV(+}O0+`r6babU+Lwx80tVuI`8ncGcJlq&o*8nk_=v@+%^wrWUQ7K8nrpP@URcRl!#_PHHQ_UldCyU~AK=Z% zB*Kh4SpWkZ2m~13I)Z4VL;})=JDGqKgTRtTbs!1XhLmU^79&hRk7lrTAhD%!C6Gjl U^Z;*GHjpGU5N-m}qD&wj0D~a@&Hw-a literal 0 HcmV?d00001 diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml new file mode 100644 index 00000000..44b042a5 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml @@ -0,0 +1,26 @@ + + + + + [Enter Feature Description here.] + + + + [Enter Copyright Description here.] + + + + [Enter License Description here.] + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties new file mode 100644 index 00000000..3c2fec8f --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties @@ -0,0 +1,4 @@ +#Sat Sep 20 13:01:44 CEST 2025 +artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature-1.0.0-SNAPSHOT.jar +artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml +artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml new file mode 100644 index 00000000..72668212 --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml new file mode 100644 index 00000000..a75808ca --- /dev/null +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + + + + [Enter License Description here.] + + + + [Enter Copyright Description here.] + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar index c647b0b078d4dde0a974635a86eae9cf96fbfe22..7409fd66f5d274984c8ef7913defe21906d99962 100644 GIT binary patch delta 416 zcmaFJ`hb-;z?+$ci-CcIfx$e(WFoH$Gl(*&=LAyGhtJEtbep(GqTb*Ckby+|``;qI z?@Q{1gbk!yIAnS*cF*f+-?gvj)b6rvbD8b;ifZYoym?X<`RU)h`=84)?QUQ7*mode zWvFBDv;d}6SDaR@TA+V^^~D+ImIdx(dl$tlXlWB9BI0s-+og@V+xaF$emv=Q*X)Jk zvB0oZY)>WL$Y?M+6&%05!g`%W{kyeWZnl4$uXE+nh3-GH8y1{qnCQB|?Q?_R@{@lr z|0(?E{>A)z{J zMRK;+_Ulb$b`CpkdU8?tRz~JGZxdcDc8q$JmY=emiKXi`Z^^t-A1`zr1mtcI!KlEIqfdI%mhth52ezOJxjuE~Q+W%^TZR zyegDee>-bz@t6Nf-;SSpT)@BlB7cB4Ba;X-Jg_HgFqwctdvZLJJtDX#FK04glVD;1 F0supixtag~ delta 417 zcmaFB`jC}3z?+$ci-CcIf#G(j!9-paW)Njk&k3ZWU(T+mb)UFLqTbQ}kby+o``@Cz z?@N*$nbVpD8k-HPE>8X!aJ@h9=e28Fiyy4t?$p@I;+HpF_5SZY=dUllnG&q{v+b7G z+M-+OoT>}BbeCuq|N6D*1@FrgnN;rw>sBf%?RM{))0A-|%4*xQYm7$P`yv)fH_HKK zS84_H9X!@3q`*>M)4A(u*W>zYUbE}6{-1Qx<=uP2o}t)^UtlKdDsx_m!dW&p{_~fy zFWSAc{<6wmPq)9fQ!FGd6n+su#d2fOv|~RdGPC0M7oEFvwD9(}I@>r&mi?8YgyLc;%YM9f?=`-R9ohdb+^N z^wfu>xtCSl|LZ5!uhHTAULf + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana" download-size="28" install-size="109" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties index 229be32f..676b0a66 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml index d59bfb7f..05fdaa5f 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml index fafd61d0..b5f6ec98 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml @@ -1,34 +1,29 @@ - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar index cdb0488e1efa3957c72a64d96caacba444466427..ca4cec5510f779715a3fd6096cabb0dca4ff9c4b 100644 GIT binary patch delta 407 zcmcb~dYzRwz?+$ci-CcIfx$e(WFoH$Gl(*&=LAyGQ|OKm_w5pcBa78miyd%!t>ApzyGyD$<75=urZl?-rMMhU^R=Od9?yE# zuQiT8;Jl{yJZnzqNelM(Gt;u_-!D~PDYV@0=(7b`Hl1%?^RPA_bFVS*`y+q-zUe(x zUHKQup50ABcT(6_2tC+2`P&1xwcSfs3%m)QS03x0aNI1+@lNLC?>i)Huh#E*!NBM1 ze|q8bxT{<;6V5MQDDNAT_vYTor&@PH=dH|s_(W#^QXBWl0iJxf4#&nOtxMf3vUjPE z*G831t75(8O8tBJ{;~I5gSlaCosHA&10GNMmKOB;z!a~=O?=gxtJxnqZM}7@G;2?S wR$aTzzM!egCtpw5AK=Z%B*F|2Phu#mwK^+#{o}n$5K-QCsvz*KdXsd+rz{N_88aNQ+ss z#(2Jh)0*D%syQ2;I5m8aDZW!*{WNmbl9j?gc{VJ2d}5!Er$I`|5$nZA{ujNCeH<(H zH1^|#z52iQ%E_j%ubA|pHTc^DwchTfrv=_5&&%H)&1SuC8%N>t(tD4RzJ&b$w}#om z$WqsRUR0=e!2!FzwlWjX){WK6#ZDIlS1!|QeO&x!)+ZTXrx2zs?X!0si8-}Qv&zqR zYLaKl#z>91QvY7Qzr5cnbDI?JblLU$7A{M@I7{;_v%AmYyo>o~^JH7>S6wt)7kt_B x_z&4nKfFTc`Q20a%^2X#$RxrH59P^nOeUaUo*c?#j|k_ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis" download-size="20" install-size="108" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties index 884f0cc5..4f280d33 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml index ddb1d15f..a31438a8 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml index 13eb6c03..ad3f9072 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml @@ -1,6 +1,6 @@ - + @@ -11,15 +11,15 @@ - + - + (org.eclipse.update.install.features=true) - + @@ -38,8 +38,8 @@ [Enter Copyright Description here.] - - + + @@ -51,11 +51,11 @@ - + - - + + (org.eclipse.update.install.features=true) diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar index c6fb546d6c8755b04c3d2d8c5db3f9cb396f0bf0..eed3baa4749714fa598e4d29f3e9763292206e1f 100644 GIT binary patch delta 405 zcmaFF`jC}3z?+$ci-CcIfx$e(WFoH$Gl(*&=LAyGdw*V;=RR?dN`1!_u2n1{9}PE# zWG!FS+{s^HnUieI`{nxe25vziAC>5L^S)bJhx3$6tJo*Zy|QXa?6g3pRhOJrrFz=m zTRvA#mTyuLPvZUy6C^hZ-$3wH~-Om z{XBB}?9`G8GPAfC*KN8a!=|*A_ow#zv);4Jd=DoaH)m7i+2t8s%V>MF-fs%K_p;@d zCwGW$W#WGGIwNCoU{vPj?L|93l}~-XF8kq&p8G-bE^4?$HWn3xi&w8p-Q006$kj`y zi|3m6%A`Yw!<*uoTJuD*^sM~;IsG{JH_TV-xn+{h*Ll%PtECHHuA0hOJhkMYVT^~= sxv(XL((EVY1H2iTM3~_rJXw>;1Qf)R6PWA~VLW*SlL?z769W(c05Gen-2eap delta 406 zcmaFJ`iPY`z?+$ci-CcIf#G(j!9-paW)Njk&k3ZW_npr=?lEzXO1*=KRYukW~WYR(Aqj7EA+zm z?UAef-4Cn8Gku@h+A>E@lZ$InlJv`)ZPxrJ=G@pA6wbzcLTt|+iPifTd{H#35#Ml_ z?~Sbnqf^28=_|6=S;);P(P_I}KclaPG2%kug1F~LvWcF$&cX6$vIZ#CHhhZfx4a#8$3@t@-%l^asZ z=1umI3e4Vcz|Ox-O={^Hn~O%G&ERMOA~HzjWjCFth#_wxQlf z7M)1gI!R0I&u^~_*&8lwbvo;M`lLLEeZ_?po=GdzeVYcQFB!gz8#lRYAkCog9*VUuEF00IEEf3$M| diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml index c91444cb..e87e74f2 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis" download-size="19" install-size="86" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties index ff2821a8..3b44d03d 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml index 3639c761..b97f555a 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml index 1f7a3262..b5ac5860 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar index f42d763fcad86879de86c09ad2be0d009b1200a5..2499ae3dfac7e59a1867719605bcf92bcc4b3ce0 100644 GIT binary patch delta 409 zcmcb`dXtqmz?+$ci-CcIfx$e(WFoH$Gl(*&=LAyG8{$vjvY)s|qTVr|Nl~En{cmlK z^2jpb$=hyT&AC;TG3(oJ^aeO@j$)9SAaJU`h-?!Ual zJBsgRu4i{skj<&GMP3ch{cg!hZq-ZEbJ|c|d9PHqkvBS;b>rpIdzW2bEB<>N$X<|9 z^n%y+%ObG{4K?pLYqOh*lDGSv6Mv}nX@wR0J^8oOC%9)bX`OVe-qGbftN2FoCcii* z)o7;3tLK*basL1O{l^qFpXE~%lO8<~E?Tnp)>cc4l~K9L=BD!u wMdvH_o3Hw0Qoi_&cz`z}lL#|BlqV}PnSg?Mas-n-BAh2LU@~D7WMTjU0B&xrApigX delta 410 zcmcb~dW)4ez?+$ci-CcIf#G(j!9-paW)Njk&k3ZWdkSkq9VYIPs6U&>q$tw*{j*5R z-ZTDNHlFQCyL8R<@|M|US4$cTLPZ*xE?=~(4P5ExQxbY(!kyxC<&DvO=GmS54q7b? zZ7rUZ$kLUmcV*9^_xY3W3G};rS~99gWA9n;V)3wj!hAF9-E_p=ZZF6^07!nNs;|N5`qy?flg#@$`L_>cd!w(s`Y-KSy61$|*6iYfAk$MVd0IA$ wjclBy@XNAK=Z%B*F|2=E(|7CZKSh9L{8q27Tn0D%0knE(I) diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml index 9d25c667..11d6070c 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis" download-size="25" install-size="120" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties index a2dc7650..239bd34b 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:53 CEST 2025 +#Sat Sep 20 13:01:45 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml index 72a9de09..cff9d314 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml index bd5a36fd..28b47803 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml @@ -1,34 +1,29 @@ - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar index 4b22ca0f1fbe4f4e3ce2b2d23e841019df861ab0..bbcd0a7a4b3b9d14946a72c24f0b9a918ee13bfa 100644 GIT binary patch delta 418 zcmaFN`iPY`z?+$ci-CcIfx$e(WFoH$Gl(*&=LAyGLiUca9uxOS)Enj>G7xC}{)g+d zwO>aR=PH&KE}qbbL7Y_V zCB4%cjIol6Ul%QTpMTk}pO4+skX2W@rdc%0p^+f`Q6;{7$z4GG2eQw9|`wp2zN$Od}{d4gAy!)C@mi&$&i&x*H7Dsaz zhF!gNEJ}55vFLwysrg|`c62vC5fAWYWD;S92lr$xCKFJ2PfldAM+Erfl}sjVQcMg$ F004!TuD$>O delta 419 zcmaFF`k0kBz?+$ci-CcIf#G(j!9-paW)Njk&k3ZW*Zex)HEL;e$UvKwB@$f7v5`} zYrXEMO1dqW@ytor`_DhK*Izzn%n;#Tuy50Z1&;;y966x9NpN1yiq8t2kK6{;TTtE4V=`1%s zU!@z8?w|TIuJOmuds=>TLG}Ev)wVW1e2bczlfz~>%ZA)c*#GIC&63R6>nvp@*(xo+ zZf{x0{o>@mrERMkWzvcz93NWHJE-_~Zm8dqjv&UcqF- JCe6eE1OTbuz-#~j diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml index 47831de3..70de2757 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis" download-size="24" install-size="98" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties index c4f1c7d6..9ccbf0de 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:53 CEST 2025 +#Sat Sep 20 13:01:45 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml index 83251582..79543be3 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml index 41edf245..e1943c1e 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar index b075bcf99e2e970fae2918cd7d6fe72eaea05498..a171d9405fbb5cfc809d4b71cbf04964a55fa2b0 100644 GIT binary patch delta 387 zcmX@ZdWMxZz?+$ci-CcIfx$e(WFoH$Gl(*&=KxaC`Hl%K6L(A2+vguL5IFk1rt5^Y zpMz7@Y8EywVeh47tE_f>6V&0m{llO6?-$bq1*Zcc)tlb!{ce3bymx!{nfe1(D?@#M zZBen*Sl1fj>uYx}eXqKaT*-b^cWnpIC{{FJZIJ}<%+rY(B@ME^?44NcFdHqLtjD@~ZiLj&4AhWd)}JQf!DXcjs#EqBUa#sF_d bCJ|f2Z9k^? diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml index b85721fe..67a52eeb 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution" download-size="5" install-size="5" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index 43b273bc..cf8d049e 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index bb645929..45341ee9 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,7 +1,7 @@ - + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index a89e3256..797958cd 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,34 +1,29 @@ - - + + + + - - - - + + - - (org.eclipse.update.install.features=true) - - - - - - - - - true - - - + + + + + (org.eclipse.update.install.features=true) + + + + [Enter License Description here.] @@ -38,30 +33,35 @@ [Enter Copyright Description here.] - - - + + - - - + + + + - - - - - (org.eclipse.update.install.features=true) - - - - + + (org.eclipse.update.install.features=true) + + + + + + + + + true + + + [Enter License Description here.] diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar index 8f02ec07bd4b160ca06beb45c582f4574650386a..5efbf459e4b27e3d3c4c9cfb1d9ca34d2d3bbffa 100644 GIT binary patch delta 401 zcmcb_dXbekz?+$ci-CcIfx$e(WFoH$Gl(*&=LAyG##a;Pm`~gzQSa~1WGHa-{claP zy_fH*UR-grRiL%mus^B7JR48gF-m{>VN@me^;q@QeYbM;-__mRua*Bh zHFT<~WQug4?twz>v&W{gOD}$QZ}#p*8Mmh$>eA(P%E^x`DY>|-yIx+K-)#Pys8jM* zfyEmf?6dMsL7rLtxX!}p)>)nNChr$Wk1EXyvOF*Fed%kzmzUHnRy7&*=t~);O59)2aeZa? pm+Ndd(e~@E`8~@fFNt6(yyr0Kop`z`)3c9V)_at$H6EB&o4jg|*ujpq zpW2)}7?nD2MCE;)&gFiC;j3Q#gn~29h5-}&1yrkQX4;;w`W$vOZ1>w%+Y{{OKXdD+ z^tU^kc$O_{YFyg(dam|YHJ7XBUhdY(p2c>!ZOzt(3-_#Ezi9d@@ZWAapU*CfEmQ1D z7G)VU*newTXX>=_QuN`~w_;u8LZ2V_z4))tr;J{QgPI=P;e~<4eAQjoyjNs&E4b^{ z98LB4(cic@SS+|#q-(>xr~3ucZoR*I1wPnM9c3!8=)k$pjR>ll__O5dl1TI+F<-7ZU>z00885u)P2P diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml index 30e08a9d..4c885825 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml @@ -2,7 +2,7 @@ + version="1.0.0.202509201100"> [Enter Feature Description here.] @@ -20,7 +20,7 @@ id="edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution" download-size="11" install-size="16" - version="1.0.0.202509160844" + version="1.0.0.202509201100" unpack="false"/> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index ee638ff0..c4608265 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Tue Sep 16 10:46:52 CEST 2025 +#Sat Sep 20 13:01:44 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index 42648466..0e485789 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index dfcddffd..d37e14a7 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,7 +1,7 @@ - - + + @@ -13,11 +13,11 @@ - + - - + + (org.eclipse.update.install.features=true) @@ -33,7 +33,7 @@ [Enter Copyright Description here.] - + @@ -44,15 +44,15 @@ - + - + (org.eclipse.update.install.features=true) - + diff --git a/pom.xml b/pom.xml index 38ac709e..a3d7d793 100644 --- a/pom.xml +++ b/pom.xml @@ -19,8 +19,8 @@ bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana - - bundles/Consistency/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana + bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql + bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2extendeddataflowanalysis bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.joanaresult2accessanalysis @@ -63,7 +63,7 @@ features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature - + features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature diff --git a/updatesite/category.xml b/updatesite/category.xml index 66ab3d8d..1a9a13fb 100644 --- a/updatesite/category.xml +++ b/updatesite/category.xml @@ -24,7 +24,7 @@ - + From f39bfd475bc1b9e193976f571464e3c780317e13 Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Sun, 12 Oct 2025 13:51:34 +0200 Subject: [PATCH 24/25] fix: fixed runtime dependencies of transformation projects --- .../META-INF/MANIFEST.MF | 6 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../feature.xml | 12 --- ...work.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 722 -> 627 bytes .../target/feature.xml | 14 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 76 ++++++-------- .../feature.xml | 12 --- ...oner.updatesite_feature-1.0.0-SNAPSHOT.jar | Bin 691 -> 591 bytes .../target/feature.xml | 14 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 40 ++------ .../feature.xml | 14 +-- ...analysis2codeql.feature-1.0.0-SNAPSHOT.jar | Bin 724 -> 668 bytes .../target/feature.xml | 18 +--- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 77 ++++++-------- .../feature.xml | 12 --- ...sanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 727 -> 628 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 76 ++++++-------- .../feature.xml | 12 --- ...analysis2codeql.feature-1.0.0-SNAPSHOT.jar | Bin 733 -> 638 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 42 ++------ .../feature.xml | 12 --- ...wanalysis2joana.feature-1.0.0-SNAPSHOT.jar | Bin 736 -> 638 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 42 ++------ .../feature.xml | 12 --- ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 727 -> 631 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 42 ++------ .../feature.xml | 12 --- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 737 -> 641 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 42 ++------ .../feature.xml | 12 --- ...2accessanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 729 -> 631 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 76 ++++++-------- .../feature.xml | 19 ++-- ...ataflowanalysis.feature-1.0.0-SNAPSHOT.jar | Bin 738 -> 662 bytes .../target/feature.xml | 23 ++--- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 45 +++------ .../feature.xml | 12 --- ...codeqlexecution.feature-1.0.0-SNAPSHOT.jar | Bin 716 -> 621 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 76 ++++++-------- .../feature.xml | 12 --- ....joanaexecution.feature-1.0.0-SNAPSHOT.jar | Bin 721 -> 624 bytes .../target/feature.xml | 16 +-- .../target/local-artifacts.properties | 2 +- .../target/p2artifacts.xml | 6 +- .../target/p2content.xml | 42 ++------ pom.xml | 95 ++++++++++++------ 78 files changed, 381 insertions(+), 850 deletions(-) diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF index f7efda4e..04351151 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql/META-INF/MANIFEST.MF @@ -4,8 +4,8 @@ Bundle-Name: Accessanalysis2codeql Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql;singleton:=true Bundle-Version: 1.0.0.qualifier Require-Bundle: org.palladiosimulator.pcm, - edu.kit.kastel.scbs.confidentialitymm;bundle-version="1.1.0", - edu.kit.kastel.scbs.pcmconfidentialityprofile;bundle-version="1.1.0", + edu.kit.kastel.scbs.confidentialitymm, + edu.kit.kastel.scbs.pcmconfidentialityprofile, edu.kit.kastel.sdq.coupling.models.codeql, com.google.guava, org.eclipse.xtext.xbase.lib, @@ -24,6 +24,6 @@ Require-Bundle: org.palladiosimulator.pcm, edu.kit.kastel.sdq.coupling.alignment.pcm2java;bundle-version="1.0.0", edu.kit.kastel.sdq.coupling.models.correspondences.accessanalysiscodeqlcorrespondence;bundle-version="0.1.0" Automatic-Module-Name: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql, edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.accessanalysis2codeqlmodel.modelgenerators diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF index 397f5c29..954c63c9 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: Accessanalysis2joana Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana;singleton:=true Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: org.kit.kastel.sdq.coupling.alignment.accessanalysis2joana -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: edu.kit.kastel.scbs.confidentialitymm, org.modelversioning.emfprofile, com.google.guava, diff --git a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF index 72f4f07f..26a67e81 100644 --- a/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF +++ b/bundles/Consistency/ModelTransformation/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanaly Bundle-Version: 1.0.0.qualifier Require-Bundle: edu.kit.kastel.sdq.coupling.models.codeql;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.models.identifier;bundle-version="0.1.0", - edu.kit.kastel.sdq.coupling.models.java;bundle-version="0.1.0", + edu.kit.kastel.sdq.coupling.models.java, edu.kit.kastel.sdq.coupling.models.pcmjavacorrespondence;bundle-version="0.1.0", edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator;bundle-version="1.0.0", com.google.guava, diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF index f560eece..25869d20 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-SymbolicName: edu.kit.kastel.sdq.coupling.backprojection.codeql2accessana Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2accessanalysis Bundle-RequiredExecutionEnvironment: JavaSE-17 -Require-Bundle: edu.kit.kastel.sdq.coupling.models.java;bundle-version="0.1.0", +Require-Bundle: edu.kit.kastel.sdq.coupling.models.java, edu.kit.kastel.sdq.coupling.models.codeql;bundle-version="0.1.0", com.google.gson;bundle-version="2.8.2", edu.kit.kastel.sdq.coupling.alignment.generation.javacodegenerator;bundle-version="1.0.0", diff --git a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF index 8d7e51a9..9d4a3835 100644 --- a/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF +++ b/bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar/META-INF/MANIFEST.MF @@ -13,4 +13,4 @@ Require-Bundle: edu.kit.kastel.sdq.coupling.models.java, edu.kit.kastel.sdq.coupling.models.correspondences.codeqlscarcorrespondences Import-Package: edu.kit.kastel.sdq.coupling.alignment.codeqltainttrackingcodegenerator Automatic-Module-Name: edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar -Bundle-RequiredExecutionEnvironment: JavaSE-11 +Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml index 52cf8c91..5b10c999 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/feature.xml @@ -4,18 +4,6 @@ label="Architecture-And-StaticCode-Analyses-CouplingFramework" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - Z{-trwTL)d0DH-hPC*-UuYHoD1nblt0x1ewG@kM_kQ>Ps^`_qg-KEOTEopvsz9I4XvWdc*zyIn`e|}%=az@FK330Zm{6;5!N&eifDWtV- z)s791j_pY#`D0{twqB>wpWYml;kQ-90(G%IMgYZ^b6lwqAsivEu$0~{G-CVZzXD1uZx)S)4@klA#qKe|eu!SoZ z@|HVXuV24>lC9Mvi@BQ59Csm9odv0qW|;?3=f&Jo-6JNlwIqr%IwX1{oL_K=PHsP&)Ii&)4un?5tG8W zJyvFIc03op{m1m`mj{k~etYuqZpKxN%r9RbGg!l>8CsQ^@ncb;_|)H5HWqAKKR@{0 zYDWzV*35^C^iuj#`4?9CiDo%2aozsFNZ{Xg@joT{7Z?wO=(j5AZ2TjwRbnf}-xd?) z-omjtu+DVG-=FV4GxggleqOG-c|&387v=zOMkWzvc#u!t#b^Qw^T{6>?fFmxeX<>s LJ{uP>>=_sU{ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> - + - - + + diff --git a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml index 3217f0c5..f805d5ea 100644 --- a/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml +++ b/features/ArchitectureAndStaticCodeAnalysesCouplingFramework.updatesite_feature/target/p2content.xml @@ -1,58 +1,23 @@ - - - + + - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - - - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +27,28 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + diff --git a/features/Partitioner.updatesite_feature/feature.xml b/features/Partitioner.updatesite_feature/feature.xml index eed205e4..43c0a935 100644 --- a/features/Partitioner.updatesite_feature/feature.xml +++ b/features/Partitioner.updatesite_feature/feature.xml @@ -4,18 +4,6 @@ label="Partitioner" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - B=m)`0dBvxBls_ z`hBz|TxQO@H4IY192c+6y|hiV;70ypnN>y_Qd8<=3^?vDo!T&0X3w|FB77fjXurIe z*?&ATrRAo{rujQ13-da`0+isov_dfE6z}35JUM}gHQ}Gu*qA ce=(YX{5#o@$(|3@!;|Zn^x4{h{$^kR04FVZ2LJ#7 delta 396 zcmX@lvYC}Pz?+$ci-CcIfk7|BWFoH$Gl(*&uLn}mo6kC2kYr?Fn8L)sz|FwGkd~TQ zQd*R%SCN}jJIUAou!6+#_kTrNen;Kfv18UY>lN0O9~P)5^Bmed%|mnH6+ipEImuIf z%`N`L*YQ_sOq(6H$lqY^i;&LCGZI+3N@G^+I&$8B^-U)I)hi;Hw>CF&yzP6STDRmF z*Xy8!NA-@ySqsI*?(Gq*UcThLLjM_d)s$VcC+7Hl>RFv3)2Z)5JEb>x{5ijJk$iwRBa;X- fJWMA~V>AH;>g2PG_I#+JI$4TIpY1g;fEgG7*8Qik diff --git a/features/Partitioner.updatesite_feature/target/feature.xml b/features/Partitioner.updatesite_feature/target/feature.xml index e1027899..13704084 100644 --- a/features/Partitioner.updatesite_feature/target/feature.xml +++ b/features/Partitioner.updatesite_feature/target/feature.xml @@ -2,19 +2,7 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> - + - - + + diff --git a/features/Partitioner.updatesite_feature/target/p2content.xml b/features/Partitioner.updatesite_feature/target/p2content.xml index 39061a55..b9489615 100644 --- a/features/Partitioner.updatesite_feature/target/p2content.xml +++ b/features/Partitioner.updatesite_feature/target/p2content.xml @@ -1,11 +1,9 @@ - - - + + + - - @@ -13,46 +11,36 @@ - + - + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +50,5 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml index 8e664768..f5309cc1 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml @@ -4,17 +4,9 @@ label="Acces-Analysis to CodeQL" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + + + 6?agXp0EjN{K&2w#}Gx9F}(Tk0b&B&Fy zvQVe(*1v1tZK59=-OhOZTUzMk|NBh$J#Ouj-sH8M&wioNlcR;p7Z%0|x@z|9zWndj ziD$FUE_k)>Nv{(7>4MHPkN87QiU)WzGKnz518=f4lL;vFCI>Ou^P&XbrCvlqn delta 449 zcmbQkdWDrYz?+$ci-CcIfx$e(WFoH$Gl(*&uLn}meS&^Jtr!^?J~J^ea5FG4q@^a7 zloqAxRpjO@owPUakb#KXcbnFyvd`UDxvXYs$(R|TwKe$a!L9lSA00E>c-dk8KDL;S z2??1-_deG?w<@%}YwEFYVd<$CUC(qDvurU4dbw-S`~2>UGyK#&cQU=(Ehbb{Gi8m& ziN4$^>Gjg@Y!r%%PPe?&X;XN-BI|C$w;pcBbA@LM-%rtYGR&EH)J*F2gnGuXlClK% z%_oHNPuM(If7(80M`}g)nu-&0-8$zt_xMd>4)H2j6nc%lrzH19Om+VJOIzMovsvGZ zXxWfDnQw=H?bZ4{8T`7DbIO#@H?K0?a=@;?Ez!iQb>r{)u&dei;g!qQwSF%CGwqX1 zuTu!qmge2NPQ;v^W?1DdnjDz2arM+b-v9sKf4QXMyZ&N{0Q>&7W&i*H diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml index b790ed4b..b6932e1e 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/feature.xml @@ -2,25 +2,17 @@ + version="1.0.0.202510121149"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties index 3947ad1e..acf9039c 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml index 3daf34b3..2b329c79 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml index 9c56ca24..47e9c20a 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/target/p2content.xml @@ -1,58 +1,23 @@ - - - + + - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - - - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +27,29 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - + + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml index c805aa3f..1b0ca049 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/feature.xml @@ -4,18 +4,6 @@ label="Access-Analysis to JOANA" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - uIFnyFQ&nQl7aY*CS? zpM-Gz#-4AXvnHg+iK%Xq{@YnIDTC)|hulx&T{rf%q)s`?(Fs5ASGsNW%Kd&J+&;j(SZ=QVpZ&#$uAXQsKhKyedsjU3#y0J5;WPKC?b`U(n6-8EU-lPdqk6_PsQF>R$U57$S^JB3#VyK$$GZWC9A6$)Qa4e5k=P Pc@dL7+Ztf#FfafBS<#22 delta 450 zcmeyua-Eeoz?+$ci-CcIfx$e(WFoH$Gl(*&uLn}m4zHG_*fKIOd}Lx^;AUW8NJ~vD zDJ@FXtH{k+I?3Pvkby+|``;qI?@Q{HI%n{1S|QVOv3p)m`>lOFUe~W}D}JziyHjH; zi(cMz)%Tx&+rHm6ZF8yiMe_*tEvpLrjCvdl&$ec1{rP1iAN%;GiKe(iZMvf4ZSN0U z%GOwX*Ys08Oc@O`lqf*v){6%~!`>T+O>W=xr za*F~rSec(bSfppPeA96W+vQywHH?EW0l02mZEuH zlI}k%jAq1IF}be_Zrc>vDjw3NKcQ{9=H-ef%TDSCcr!AIFvG(=8W^~6zzJeaKFg>C Yii*jf814B`<6^QslRg_iFiIF00N4b(s{jB1 diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml index 6948523e..6cee2e63 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties index 61702257..ee8e9079 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml index c43bad8b..984adcf7 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml index c39dfd6e..183c8c6c 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2joana.feature/target/p2content.xml @@ -1,58 +1,23 @@ - - - + + - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - - - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +27,28 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml index 21ab5d20..b7f5fa2d 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/feature.xml @@ -4,18 +4,6 @@ label="Extended Dataflow-Analysis to CodeQL" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - y4qXZ)T~&GwbXp^dH?+zS2*Y*Gs}g&qlg&u887ZIjd{mJ{|Y(C03rNObhNudYt$;anT|L zt8G)~)#vW~+;FB-c6DjGK|{~toDl9)#y6@1m|7mpTOas6rqIUXW!HiR*-baRlMO%d zAL!Cka(yN!ZR^@s;hV--8~0b~@ZH1FDMu};H8$CtH?s1qb6Uy}9-Ud!G4Wj6zuxc9 z41Is^y!+v*uO25efD0-46@&UW%ICJoW6c`yum! zrysg0xqq3>;=qngY)>C7(@WD!UEL8E?5fknQ`Q@@@uB_t#($+;ceSs?^vwCw)FoEl zJTv56@ezwtn?EL$y_WhHG}ma)y|9wAhJSiYYQkq8^PZz}Kfs%jNrV|5`q983hJnc! a88tvrG5HUpJs)aZO!j2bXA@-tsRRJ?LB0_H diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml index 44b042a5..23fe9abc 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties index 3c2fec8f..04740383 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml index 72668212..9dc597ce 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml index a75808ca..24fcebb6 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2codeql.feature/target/p2content.xml @@ -1,11 +1,9 @@ - - - + + + - - @@ -13,46 +11,36 @@ - + - - + + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +50,5 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml index fe7d23b7..7bd09fd1 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/feature.xml @@ -4,18 +4,6 @@ label="Extended Dataflow-Analysis to JOANA" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - iH&b{~{Kq3-$I<=&*NGd4UgaO(df7<*-XVq|Jx>zva+oN^wR zIX_YhPMvKyv1vzrj{L3oq`NhhyDnW{6%@5{wXDg}?JMV1$jv$buU?0Lx`(viJmyfbH)Tq?^UOtN;K2 delta 450 zcmeyz@_>~$z?+$ci-CcIfx$e(WFoH$Gl(*&uLn}mhtJEtbYo;-5MX9t;AUW8NJ~vD zDJ@FXtH{k+JIUYwkby+|``;qI?@Q{1gbk!yIAnS*cF*f+-?gvj)b6rvbD8b;ifZYo zym?X<`RU)h`=84)?QUQ7*modeWvFBDv;d}6SDaR@TA+V^^~D+ImIdx(dl$tlXlWB9 zBI0s-Tm7Yty4(3CM1DN!b=T~LA)z{JMRK;+_Ulb$b`CpkdU8?t)_O+fH*XVOEOv}~m6o5f zwXpeA@T;JT@={QD8TxmVC^o`miKXi`Z^^t-A1`zr1mtcI!KlEIqfd zI%mhth52ezOJxjuE~Q+W%^TZRyegDee>-bz@t6Nf-;SSpT)@BlB7cB4Ba;X-JOZMD fp$rC-&oOF)qGIwNMteTgxR~t8q|YY71X2b7FGs(G diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml index c95a69a4..ccdb8a0d 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties index 676b0a66..26de4521 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml index 05fdaa5f..c4e8482b 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml index b5f6ec98..fe4a2d03 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.extendeddataflowanalysis2joana.feature/target/p2content.xml @@ -1,11 +1,9 @@ - - - + + + - - @@ -13,46 +11,36 @@ - + - - + + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +50,5 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml index 47029a92..dffbdf63 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/feature.xml @@ -4,18 +4,6 @@ label="CodeQL to Access-Analysis" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - kOFCDn?E32TTl;74sXDDf5gAk0mQc%;@mIrn&zc8#^D;7tFvG)TvK*5MC}1Xs UGTHN?hRozeO!{n~0AgSO0Q_u}-T(jq delta 450 zcmey)a-Eeoz?+$ci-CcIfx$e(WFoH$Gl(*&uLn}mQptQP4#JZ4N7r2oaSpo4LzRqtY2#!f53T7?|Igo(32MI?`NiEygYFmHPMc{bTRB26MyOIvc0k2RxqiEiLHx zfhk^#oA|0XSF=BK+Is6)Y1Wo_2hZ+}?otX65_<>QvzyJV}dA-O0 diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml index 760be8b2..ae729c02 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties index 4f280d33..f8493853 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml index a31438a8..a784af68 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml index ad3f9072..44a48066 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2accessanalysis.feature/target/p2content.xml @@ -1,25 +1,23 @@ - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -29,21 +27,11 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - + + + - - @@ -51,24 +39,16 @@ - + - - + + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml index bf3dede7..54d1913c 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/feature.xml @@ -4,18 +4,6 @@ label="CodeQL to Extended Dataflow-Analysis" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - |1n-P|V^Ws!@TK926_$lb zwYO*HZ+V?RnzeMD*#)ut%hH}y=Er{fU(LRQMY_J| z&BZAP>wO*(zNHbry+vLlM#)PTjyG&RAsm=Y!8sN>yB*F|2 ep~)IdCZHgi9M5FWhZ;tc*D&d`?F0rD0|Nk%XOrXr delta 450 zcmZo8AO@X*8{2Oy+5zab7y2=kYQ$E;AUW8NJ~vD zDJ@FXtH{k+JIOZxkbywk_di^xt^GQ#aIInq`DnN?By0Jq=1%?s%ba9u-Y?g$H*gCI z`KUy{oA=$)I-I9mTE#wL?v+(bVy6W%t-9p2D%I2e-txI}vV4=081Gyc6Dq1%qM_L_ zYwgnX`s{Z$3dKpMwPK}t6lQc~Ftt3GrypP*Q+UVvWdzT1 zL)o7)8*tZ%XQ!4-keS8BxNg%W88)S@ zyg#+ypY@()=6g8dxH+35&o0mCT1MNW^?p;>y_YSwJh`J@bSo40o7Wi`ivy!FH*YW6 z`Kf&B^L5z|U-aA$ns-sdC9<)oAY8n9UFznJdqJ)`T|C#kS0)`g9NrYy)S4%frDx^$ z&*{g(zhS;w&n=U5zRrtYS}k4pa@ADM;;AJE4P!i{&V?;0lx9CEAK=Z%B*F}jfoNbb egTUkqj5?sGnEap7o)0xHCi^hyvq>_6Q~?08jkW9m diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml index e87e74f2..1ea52200 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties index 3b44d03d..90a86975 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml index b97f555a..684c0e59 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml index b5ac5860..7d671114 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.codeql2extendeddataflowanalysis.feature/target/p2content.xml @@ -1,11 +1,9 @@ - - - + + + - - @@ -13,46 +11,36 @@ - + - - + + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +50,5 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml index 538eafb6..e59f2e5a 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/feature.xml @@ -4,18 +4,6 @@ label="JOANA to Access-Analysis" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - @tCEcA-x#`%uyjeD+`8o7+0ikUSI2K zZ|6KN@ky2MYngpa@2wI2#rAyZMN>VFqZ}sYPOmC^@84HzmbQ^gy~-1jA)Au1f5{5N zj%jOB>J_w~F>5?JD*kZURxPQMQ$9{DP2;pV60ym|XY-^&zI(?f->Q1)>2*XiXrtx| zDf_)<`n+6hrqy2;cz&{v+<$q8cNE{tT+i;NAe&QVi@X}1``wb2+^UzR=d_``@?NQI zBX4vx>&DBa_b$7>R{Zxkki8(I=moFsmqlU^8fxBg)@Ii?6(w)?J1727>(dG=_IvVg zr%!OtX3{$8SiPgmdsgv{;!SZ*s?ki5SI;f=uZ;G5sBtmbiAkSL5Evy43;?x1wC?}_ diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml index 11d6070c..d7f5c588 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties index 239bd34b..cc05d9d8 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:45 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml index cff9d314..6c1c02bc 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml index 28b47803..6541f3a1 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2accessanalysis.feature/target/p2content.xml @@ -1,58 +1,23 @@ - - - + + - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - - - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +27,28 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml index e5d13f29..0d2ad46f 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/feature.xml @@ -4,18 +4,6 @@ label="JOANA to Extended Dataflow-Analysis" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar index bbcd0a7a4b3b9d14946a72c24f0b9a918ee13bfa..f8dd7104610c14fda1fc2691b8111199784f1863 100644 GIT binary patch delta 367 zcmaFFI*pY#z?+$ci-CcIfgvi-XCki(Gl(*&uLn}m4|~|({9#~VXklVt;0DrZsfi_} zMX7ofxjAbm?#*j95NR!+$5eUzphl>}As3I_cD}cl><;kmb7_;Foiuq#?XOFxLL)9M z?ArVD&kO6Kowo8Cc8^|cF`dLYZH|xllS7}C(p@Uy&^~Ok4ciqf0?x^&ZZyZ zs_!+|fA+Yuvi#nS%mtPw$}fC5oMD~wC+4&@H=B`7wF%c$CVt(Um;boQ`&rBFiqufQ zq3HSTOOXBbjoUvupE&wmamE$JpR*$#oj3R1Y(25dr=#@Xsu#CI_)Okz<@^_|pD;Zx z)xS+=#gUi(Q*@&BO>*b3FH#Ww>GUi6;8D|=iN_|bVJ*@*5%zyh*#@qYANl$UWNRkJ zvx?7t#P;N=R!y~NEn|Q;Ba;X-JlG~{GMRwFZE^yWJs)boOaR=PH&KE}qbbL7Y_VCB4%cjIol6Ul%QTpMTk}pO4+skX}q|BtOFgu5EO!WP)x>2W@rdc%0p^+f`Q6;{7$z4GG2eQw9|`wp2zN$Od} z{d4gAy!)C@mi&$&i&x*H7DsazhF!gNEJ}55vFLwysrg|`c62vC5fAWYWD;S9M?o|& eoPl8S6GmN7R7@6OvgbpMi^+*h`fO56AXNahi?fmd diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml index 70de2757..5641c5b9 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/feature.xml @@ -2,25 +2,20 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties index 9ccbf0de..163d4c28 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:45 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml index 79543be3..0365d203 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml index e1943c1e..c4735a7e 100644 --- a/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature/target/p2content.xml @@ -1,11 +1,9 @@ - - - + + + - - @@ -13,46 +11,37 @@ - + - - - + + + + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +51,5 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml index 2a2c87d3..7af0c875 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/feature.xml @@ -4,18 +4,6 @@ label="CodeQL-Execution" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - )*VdahZXEVLl@R12>RPOHC{( zElSm^$jw|`wOyyar}-XLnK0{J!-FHNoN@HOKB($YP%TfR|wm)jq4$%uGQI}fL4@l*CY z#jlW2+p@S(cay-HQ)Yj&EYAhhG6#4wGKnxl0s|BblZBZ~z_b^WJs)a#OrFl9&$bj8 HEDQ_)$ajb6 delta 421 zcmaFMa)y;Rz?+$ci-CcIfx$e(WFoH$Gl(*&uLn}m`Hl%KMvM#$@0b`ExEUB2(oz#k zN{dqUDspqyPO{HGWFT<#drj8~Yd;64tko=RT*BT<%T`(K_$H{scl(Dw^WQI~2?|aJ zLaH~t+xy-6c6jgh>@)QTtX78l{@S8qsj;p##MjsEUiw~jBe~S8Of&e!HvQSKWCdr3 zL-?i3^`gac6Rb8ajA3uS=rNaXnzIk%GKqI{N=oW)DC9J<%LkgUPMXs3MtXzVR3{v~;4xL`-_z44RefHBElgYV{E7aRlpC6!Pi>s{1Xh|bi-!iZ zeGK&#<9RGB^3g1GVp{H$zl;Iij7%cT@W7tDh0z2Q+LK>1+Vi0X_hbtueKr - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties index cf8d049e..9dab6df8 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml index 45341ee9..c94dbab5 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml index 797958cd..f7bb0170 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution.feature/target/p2content.xml @@ -1,58 +1,23 @@ - - - + + - - - - - - - - - - - - - - - - (org.eclipse.update.install.features=true) - - - - - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - - - - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +27,28 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - + + + + + + + + + + + + + + + + + + + (org.eclipse.update.install.features=true) + + + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml index bb7bd330..1c45fdb3 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/feature.xml @@ -4,18 +4,6 @@ label="JOANA-Execution" version="1.0.0.qualifier"> - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - - T1FprUefg4Dtr6!h? z7NzP{ zvP|)>Yi+5j`GR+%G832&YOTM#ZrS6KqviqLj7%cT!0=#$1ju9wCKFJIO!jB8=R*yW P$#arcz?+$ci-CcIfx$e(WFoH$Gl(*&uLn}m##a;Pm@_gkyk%lw;AUW8NJ~vD zDJ@FXtH{k+JIUXl$xz_v``?;odoSNry}06Lt3YeBVb#US9|LYPYB@*$KF(^tmz68W z<3UPwrqTPo_qSZG+7XrXkNKMCTB)Fmlb$TtAr^F2>eDx?mv<*TR9Lue?mKJR*|N_3)Ob`~DJ}LtGUfCb|U6c{ZM~W0d~% z!>CH`>#^#q`)=jxzpJ~sUn~E2YUor|$rR~8-2;W%XOB%~mtOqr-t66rGHy>h)TPVo zl#?G>QgU%ucfGtezuEjZQK#gs0*f~|*l%lDXX?1qEL%IhzPMhnGGH##d;V|5Cz?$e z1B(Lq^d3!mCh~2{n&$y0r#Y}4_E|OMgFLhPah-+Ht+P7kP2Mk%9#xtZWO-iT`_k8b zFE6QEtZFjq(U&qxmAJp4_$_IEeGKnz5Lp&N7tZ={yX9-L`&nN?miplR7 T?fFpSVzM=pJ{u=6N*EXbmM^t5 diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml index 4c885825..801a7283 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/feature.xml @@ -2,25 +2,13 @@ - - - [Enter Feature Description here.] - - - - [Enter Copyright Description here.] - - - - [Enter License Description here.] - + version="1.0.0.202510121149"> diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties index c4608265..3d6241d7 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/local-artifacts.properties @@ -1,4 +1,4 @@ -#Sat Sep 20 13:01:44 CEST 2025 +#Sun Oct 12 13:50:51 CEST 2025 artifact.main=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature-1.0.0-SNAPSHOT.jar artifact.attached.p2artifacts=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml artifact.attached.p2metadata=/home/simon/Documents/Uni Ulm/Hiwi QDSEG/eclipse-workspace/TSE_Reiche_TransformationsAndModels/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml index 0e485789..41fb8eee 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2artifacts.xml @@ -1,10 +1,10 @@ - + - - + + diff --git a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml index d37e14a7..bb183214 100644 --- a/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml +++ b/features/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.joanaexecution.feature/target/p2content.xml @@ -1,11 +1,9 @@ - - - + + + - - @@ -13,46 +11,36 @@ - + - - + + (org.eclipse.update.install.features=true) - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - - - + + - - - + - + (org.eclipse.update.install.features=true) - + @@ -62,13 +50,5 @@ - - - [Enter License Description here.] - - - - [Enter Copyright Description here.] - diff --git a/pom.xml b/pom.xml index a3d7d793..02c29e99 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,67 @@ TSE_Reiche_TransformationsAndModels 0.0.1-SNAPSHOT pom - + + + + + + org.eclipse.tycho + tycho-p2-director-plugin + 2.7.5 + + true + true + true + + + + + + + org.eclipse.tycho + tycho-maven-plugin + 2.7.5 + true + + true + true + true + + + + org.eclipse.tycho + tycho-p2-plugin + 2.7.5 + + + attached-p2-metadata + package + + p2-metadata + + + + + true + true + true + + + + org.eclipse.tycho + tycho-p2-repository-plugin + 2.7.5 + + true + true + true + + + + + + bundles/Non-Conformance-Analysis/edu.kit.kastel.sdq.coupling.sourcecodeanalysis.codeqlexecution @@ -29,7 +89,7 @@ bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.codeqlresult2scar bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultparser.joana2scar bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.codeqlscar2resultingspecification - bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification + bundles/Integration/edu.kit.kastel.sdq.coupling.backprojection.resultingspecificationextraction.joana2resultingspecification bundles/Metamodels/edu.kit.kastel.sdq.coupling.models.codeql @@ -71,34 +131,9 @@ features/edu.kit.kastel.sdq.coupling.backprojection.joana2extendeddataflowanalysis.feature updatesite - - - - - org.eclipse.tycho - tycho-maven-plugin - 2.7.5 - true - - - org.eclipse.tycho - target-platform-configuration - 2.7.5 - - p2 - - - linux - gtk - x86_64 - - - - - - + - + eclipse-2023-09 @@ -145,5 +180,5 @@ https://repo.maven.apache.org/maven2 default - + From 74df55d8971174b646e4b58933dfffa9658abead Mon Sep 17 00:00:00 2001 From: Simon Berlinger Date: Sun, 12 Oct 2025 14:04:34 +0200 Subject: [PATCH 25/25] fix: fixed typo in access analysis to codeql feature --- .../feature.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml index f5309cc1..b5d318ba 100644 --- a/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml +++ b/features/edu.kit.kastel.sdq.coupling.alignment.accessanalysis2codeql.feature/feature.xml @@ -1,7 +1,7 @@