Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroHc committed Dec 22, 2019
1 parent ed84633 commit 00e0b81
Show file tree
Hide file tree
Showing 23 changed files with 137 additions and 13 deletions.
6 changes: 5 additions & 1 deletion META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Minimap
Bundle-SymbolicName: pt.iscte.pidesco.minimap;singleton:=true
Bundle-Version: 0.0.1
Bundle-Version: 1.0.0
Bundle-Activator: pa.iscde.minimap.Activator
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Automatic-Module-Name: pt.iscte.pidesco.minimap
Expand All @@ -25,3 +25,7 @@ Require-Bundle: pt.iscte.pidesco;bundle-version="0.1.0",
org.apache.commons.lang3;bundle-version="3.1.0",
org.apache.log4j;bundle-version="1.2.0",
com.google.gson;bundle-version="2.8.0"
Export-Package: pa.iscde.minimap.extensibility;uses:="pa.iscde.minimap.service",
pa.iscde.minimap.extensibility.inspections;uses:="pa.iscde.minimap.extensibility,pa.iscde.minimap.service",
pa.iscde.minimap.service;uses:="org.eclipse.swt.graphics",
pa.iscde.minimap.utils;uses:="org.eclipse.swt.graphics"
11 changes: 11 additions & 0 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (c) 2019.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Authors:
# - Sandro Marques <https://sandrohc.net>
#

source.. = src/
output.. = bin/
bin.includes = META-INF/,\
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!--
~ Copyright (c) 2019.
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the Eclipse Public License v1.0
~ are made available under the terms of the Eclipse Public License v2.0
~ which accompanies this distribution, and is available at
~ http://www.eclipse.org/legal/epl-v10.html
~
Expand Down
2 changes: 1 addition & 1 deletion schema/pa.iscde.minimap.inspection.exsd
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<meta.section type="implementation"/>
</appinfo>
<documentation>
[Enter information about supplied implementation of this extension point.]
An example of an inspection rule can be seen at &lt;pre&gt;pa.iscde.minimap.extensibility.inspections.BaseInspection&lt;/pre&gt;.
</documentation>
</annotation>

Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/Activator.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/extensibility/MinimapInspection.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.extensibility;

import org.eclipse.jdt.core.dom.ASTNode;
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/extensibility/inspections/BaseInspection.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.extensibility.inspections;

import org.eclipse.jdt.core.dom.ASTNode;
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/extensibility/inspections/NoopInspection.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.extensibility.inspections;

import org.eclipse.jdt.core.dom.ASTNode;
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/internal/InspectionContextImpl.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/internal/MinimapView.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/internal/SettingsDialog.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.internal;

import org.apache.log4j.Logger;
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/internal/SettingsManager.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.internal;

import java.io.BufferedWriter;
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/internal/SettingsTool.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.internal;


Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/internal/extension/Extension.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.internal.extension;

import java.util.Arrays;
Expand Down
12 changes: 11 additions & 1 deletion src/pa/iscde/minimap/internal/extension/ExtensionRule.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.internal.extension;

import java.util.Objects;
Expand All @@ -6,7 +17,6 @@
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import pa.iscde.minimap.extensibility.MinimapInspection;
import pa.iscde.minimap.internal.SettingsManager;

import static pa.iscde.minimap.extensibility.inspections.NoopInspection.NOOP;

Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/internal/listeners/ButtonClicked.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.internal.listeners;

import org.eclipse.swt.events.MouseAdapter;
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/internal/parser/AstVisitor.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/internal/parser/MinimapFile.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/internal/parser/MinimapLine.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/service/InspectionContext.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
11 changes: 11 additions & 0 deletions src/pa/iscde/minimap/service/MinimapServices.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Authors:
* - Sandro Marques <https://sandrohc.net>
*/

package pa.iscde.minimap.service;

import java.io.File;
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/utils/Colors.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down
2 changes: 1 addition & 1 deletion src/pa/iscde/minimap/utils/Styles.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2019.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
Expand Down

0 comments on commit 00e0b81

Please sign in to comment.