File tree 4 files changed +40
-24
lines changed
4 files changed +40
-24
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ Required Eclipse plug-ins (install the listed features via `Help` -> `Install Ne
105
105
* MWE 2 language SDK 2.11.3 (MWE)
106
106
* Groovy Development Tools (https://dist.springsource.org/release/GRECLIPSE/3.9.0/e4.17 )
107
107
* Eclipse Groovy Development Tools 3.9.0 (Main Package)
108
+ * M2Eclipse (https://download.eclipse.org/technology/m2e/releases/latest/ )
109
+ * m2e 1.17.2
110
+ * m2e PDE 1.17.2
108
111
109
112
### Eclipse Preferences
110
113
@@ -118,6 +121,10 @@ Make sure you have the following preferences enabled/disabled.
118
121
119
122
* Make sure the Git line endings are set to * input* (Preferences->Team->Git->Configuration - add key if missing * core.autocrlf = input* )
120
123
124
+ ### Maven Settings
125
+
126
+ * Make sure the ` settings.xml ` in your ~ /.m2/settings.xml location is updated with the content from the ` settings.xml ` from this repository's root folder.
127
+
121
128
## First steps
122
129
123
130
1 . Import all projects into your Eclipse workspace and wait for the build to complete
Original file line number Diff line number Diff line change 39
39
<failsafe .version>2.3.1</failsafe .version>
40
40
<osgi .versionRange>[3.16.0,3.17.0]</osgi .versionRange>
41
41
42
- <!-- p2 repositories -->
43
- <snomed .ecl.version>1.4.1</snomed .ecl.version>
44
- <snomed .ecl.site>mvn:com.b2international:com.b2international.snomed.ecl.update:${snomed.ecl.version} :zip</snomed .ecl.site>
45
-
46
- <snomed .ql.version>0.1.1</snomed .ql.version>
47
- <snomed .ql.site>mvn:com.b2international:com.b2international.snomed.ql.update:${snomed.ql.version} :zip</snomed .ql.site>
48
-
49
42
<!-- Build tool/compiler versions -->
50
43
<tycho .version>2.2.0</tycho .version>
51
44
<tycho-extras .version>2.2.0</tycho-extras .version>
130
123
<enabled >true</enabled >
131
124
</snapshots >
132
125
</repository >
133
- <repository >
134
- <id >snomed-ecl</id >
135
- <url >${snomed.ecl.site} </url >
136
- <layout >p2</layout >
137
- </repository >
138
- <repository >
139
- <id >snomed-ql</id >
140
- <url >${snomed.ql.site} </url >
141
- <layout >p2</layout >
142
- </repository >
143
126
</repositories >
144
127
145
128
<dependencies >
Original file line number Diff line number Diff line change 60
60
<unit id =" org.eclipse.emf.mwe2.language.sdk.feature.group" version =" 2.11.3.v20200520-0756" />
61
61
<repository location =" https://download.eclipse.org/modeling/emft/mwe/updates/releases/2.11.3/" />
62
62
</location >
63
+ <location includeAllPlatforms =" false" includeConfigurePhase =" true" includeMode =" planner" includeSource =" true" type =" InstallableUnit" >
64
+ <repository location =" mvn:com.b2international:com.b2international.snomed.ecl.update:1.4.1:zip" />
65
+ <unit id =" com.b2international.snomed.ecl.feature.feature.group" version =" 1.4.1" />
66
+ <unit id =" com.b2international.snomed.ecl.ui.feature.feature.group" version =" 1.4.1" />
67
+ </location >
68
+ <location includeAllPlatforms =" false" includeConfigurePhase =" true" includeMode =" planner" includeSource =" true" type =" InstallableUnit" >
69
+ <repository location =" mvn:com.b2international:com.b2international.snomed.ql.update:0.1.1:zip" />
70
+ <unit id =" com.b2international.snomed.ql.feature.feature.group" version =" 0.1.1" />
71
+ <unit id =" com.b2international.snomed.ql.ui.feature.feature.group" version =" 0.1.1" />
72
+ </location >
63
73
</locations >
64
74
</target >
Original file line number Diff line number Diff line change 4
4
http://maven.apache.org/xsd/settings-1.0.0.xsd" >
5
5
<profiles >
6
6
<profile >
7
- <id >repositories</id >
8
7
<activation >
9
8
<activeByDefault >true</activeByDefault >
10
9
</activation >
11
- <properties >
12
- <!-- Nexus instance URL, example: http://example:8081/nexus -->
13
- <nexus .url>url/to/local/nexus/instance</nexus .url>
14
- <nexus .snapshots.url>${nexus.url}/content/repositories/snapshots</nexus .snapshots.url>
15
- <nexus .releases.url>${nexus.url}/content/repositories/releases</nexus .releases.url>
16
- </properties >
10
+ <repositories >
11
+ <repository >
12
+ <id >b2i-releases</id >
13
+ <url >https://nexus.b2i.sg/repository/maven-releases</url >
14
+ <releases >
15
+ <enabled >true</enabled >
16
+ </releases >
17
+ <snapshots >
18
+ <enabled >false</enabled >
19
+ </snapshots >
20
+ </repository >
21
+ <repository >
22
+ <id >b2i-snapshots</id >
23
+ <url >https://nexus.b2i.sg/repository/maven-snapshots</url >
24
+ <releases >
25
+ <enabled >false</enabled >
26
+ </releases >
27
+ <snapshots >
28
+ <enabled >true</enabled >
29
+ <updatePolicy >always</updatePolicy >
30
+ </snapshots >
31
+ </repository >
32
+ </repositories >
17
33
</profile >
18
34
</profiles >
19
35
<servers >
You can’t perform that action at this time.
0 commit comments