Skip to content
Snippets Groups Projects
Commit c008dcfd authored by Dominique Marcadet's avatar Dominique Marcadet
Browse files

Merge branch '8-release-v1-0-0' into 'master'

Resolve "Release v1.0.0"

Closes #8

See merge request RiseClipseGroup/RiseClipseEditor!6
parents 73ff22f0 f56c0417
1 merge request!6Resolve "Release v1.0.0"
Pipeline #1453 passed
......@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: fr.centralesupelec.edf.riseclipse.editor;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Version: 1.0.1.qualifier
Bundle-ClassPath: .
Bundle-Activator: fr.centralesupelec.edf.riseclipse.ui.RiseClipseEditorPlugin$Implementation
Bundle-Vendor: %providerName
......
<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">
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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>
<groupId>fr.centralesupelec.edf.riseclipse</groupId>
<artifactId>fr.centralesupelec.edf.riseclipse.editor</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<parent>
<groupId>fr.centralesupelec.edf.riseclipse</groupId>
<artifactId>RiseClipseEditor</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
</project>
......@@ -25,7 +25,7 @@ import fr.centralesupelec.edf.riseclipse.ui.RiseClipseEditor;
import fr.centralesupelec.edf.riseclipse.util.AbstractRiseClipseConsole;
import fr.centralesupelec.edf.riseclipse.util.IRiseClipseResource;
public class displayStatisticsHandler extends AbstractHandler {
public class DisplayStatisticsHandler extends AbstractHandler {
@Override
public Object execute( ExecutionEvent event ) throws ExecutionException {
......
/**
* Copyright (c) 2018 CentraleSupélec & EDF.
* 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
*
* This file is part of the RiseClipse tool
*
* Contributors:
* Computer Science Department, CentraleSupélec
* EDF R&D
* Contacts:
* dominique.marcadet@centralesupelec.fr
* aurelie.dehouck-neveu@edf.fr
* Web site:
* http://wdi.supelec.fr/software/RiseClipse/
*/
package fr.centralesupelec.edf.riseclipse.ui;
@SuppressWarnings( "serial" )
public class RiseClipseFatalException extends RuntimeException {
public RiseClipseFatalException() {
super();
}
public RiseClipseFatalException( String message ) {
super( message );
}
public RiseClipseFatalException( Throwable cause ) {
super( cause );
}
public RiseClipseFatalException( String message, Throwable cause ) {
super( message, cause );
}
// Not in Java6
// public RiseClipseFatalException( String message, Throwable cause, boolean enableSuppression,
// boolean writableStackTrace ) {
// super( message, cause, enableSuppression, writableStackTrace );
// }
}
<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">
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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>
<groupId>fr.centralesupelec.edf.riseclipse</groupId>
<artifactId>RiseClipseEditor</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>fr.centralesupelec.edf.riseclipse</groupId>
<artifactId>fr.centralesupelec.edf.riseclipse.developer.maven-root</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<relativePath>../RiseClipseDeveloper/fr.centralesupelec.edf.riseclipse.developer.maven/pom-root.xml</relativePath>
</parent>
<scm>
<connection>scm:git:git@gitlab.centralesupelec.fr:RiseClipseGroup/RiseClipseEditor.git</connection>
<developerConnection>scm:git:git@gitlab.centralesupelec.fr:RiseClipseGroup/RiseClipseEditor.git</developerConnection>
<tag>HEAD</tag>
</scm>
<modules>
<module>fr.centralesupelec.edf.riseclipse.editor</module>
</modules>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment