Initial commit.

This commit is contained in:
2017-09-18 15:34:21 +02:00
commit 93878ac5e6
49 changed files with 3559 additions and 0 deletions

View File

@@ -0,0 +1 @@
/target/

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.irtsaintexupery.capella2aadl-feature</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.FeatureBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>

View File

@@ -0,0 +1,13 @@
###############################################################################
# Copyright (c) 2015, 2016 IRT AESE (IRT Saint Exupery).
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Bassem Ouni and Pierre Gaufillet (IRT Saint Exup<75>ry) - initial API and implementation
#
###############################################################################
bin.includes = feature.xml,\
feature.properties

View File

@@ -0,0 +1,27 @@
###############################################################################
# Copyright (c) 2015, 2016 IRT AESE (IRT Saint Exupery).
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Bassem Ouni and Pierre Gaufillet (IRT Saint Exup<75>ry) - initial API and implementation
#
###############################################################################
featureName=Capella2AADL
providerName=IRT AESE (IRT Saint Exup<75>ry)
description=Capella2AADL is a model transformation from Capella physical\n\
architecture to an abstract AADL architecture.\n\
Its goal is to make the transition between system engineering\n\
and hardware and software engineering easier.
copyright=\
Copyright (c) 2000, 2017 IRT AESE (IRT Saint Exup<75>ry).\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
http://www.eclipse.org/legal/epl-v10.html\n

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2015, 2017 IRT AESE (IRT Saint Exupery).
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Bassem Ouni and Pierre Gaufillet (IRT Saint Exupéry) - initial API and implementation
-->
<feature
id="com.irtsaintexupery.capella2aadl"
label="%featureName"
version="1.1.2.qualifier"
provider-name="%providerName"
license-feature="com.irtsaintexupery.epl"
license-feature-version="1.0.0.qualifier">
<description>
%description
</description>
<copyright url="http://www.irt-saintexupery.com">
%copyright
</copyright>
<license url="%licenseURL">
%license
</license>
<plugin
id="com.irtsaintexupery.capella2aadl"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
<plugin
id="com.irtsaintexupery.capella2aadl.ui"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
</feature>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2015, 2017 IRT AESE (IRT Saint Exupery).
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Bassem Ouni and Pierre Gaufillet (IRT Saint Exupéry) - initial API and implementation
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.irtsaintexupery</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../releng/com.irtsaintexupery.parent</relativePath>
</parent>
<groupId>com.irtsaintexupery.features</groupId>
<artifactId>com.irtsaintexupery.capella2aadl</artifactId>
<version>1.1.2-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>