1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (c) 2009, 2019 Mountainminds GmbH & Co. KG and Contributors 4 All rights reserved. This program and the accompanying materials 5 are made available under the terms of the Eclipse Public License v1.0 6 which accompanies this distribution, and is available at 7 http://www.eclipse.org/legal/epl-v10.html 8 9 Contributors: 10 Evgeny Mandrikov - initial API and implementation 11--> 12<settings> 13 <profiles> 14 <profile> 15 <id>it-repo</id> 16 <activation> 17 <activeByDefault>true</activeByDefault> 18 </activation> 19 <repositories> 20 <repository> 21 <id>local.central</id> 22 <url>@localRepositoryUrl@</url> 23 <releases> 24 <enabled>true</enabled> 25 </releases> 26 <snapshots> 27 <enabled>true</enabled> 28 </snapshots> 29 </repository> 30 </repositories> 31 <pluginRepositories> 32 <pluginRepository> 33 <id>local.central</id> 34 <url>@localRepositoryUrl@</url> 35 <releases> 36 <enabled>true</enabled> 37 </releases> 38 <snapshots> 39 <enabled>true</enabled> 40 </snapshots> 41 </pluginRepository> 42 </pluginRepositories> 43 </profile> 44 </profiles> 45</settings> 46