Skip to content
Commits on Source (3)
ivyplusplus (1.28-1) unstable; urgency=medium
* Team upload.
* New upstream release
-- Emmanuel Bourg <ebourg@apache.org> Wed, 19 Sep 2018 08:40:06 +0200
ivyplusplus (1.26-1) unstable; urgency=medium
* Team upload.
......
......@@ -3,7 +3,7 @@ Upstream-Name: ivyplusplus
Source: https://github.com/rzwitserloot/ivyplusplus
Files: *
Copyright: 2010-2017, Reinier Zwitserloot
Copyright: 2010-2018, Reinier Zwitserloot
License: MIT
Files: debian/*
......
/**
* Copyright © 2010-2017 Reinier Zwitserloot.
* Copyright © 2010-2018 Reinier Zwitserloot.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
......@@ -23,7 +23,7 @@ package com.zwitserloot.ivyplusplus;
public class Version {
// ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries).
private static final String VERSION = "1.26";
private static final String VERSION = "1.28";
private Version() {
//Prevent instantiation
......
/**
* Copyright © 2010-2014 Reinier Zwitserloot.
* Copyright © 2010-2018 Reinier Zwitserloot.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
......@@ -204,7 +204,7 @@ public class BuildEclipseProject extends IvyPostResolveTask {
}
if (i == b.length() && c.length() > i && c.charAt(i) == '/') {
return new EclipsePath(false, c.substring(i + 1));
return new EclipsePath(false, (forceProject ? ("/" + projectname + "/") : "") + c.substring(i + 1));
}
int lastSlashInBase = b.indexOf('/', lastSlash + 1);
......