dev@jaxb.java.net

Path to ${tools.jar} seems to be incorrect

From: Aleksei Valikov <aleksei.valikov_at_gmail.com>
Date: Fri, 17 Oct 2014 17:44:20 +0200

Hi there,

I was checking some of JAXB JARs and found this:

<profile>
  <id>default-tools.jar</id>
  <activation>
    <file>
      <exists>${java.home}/../lib/tools.jar</exists>
    </file>
  </activation>
  <properties>
    <tools.jar>${java.home}/../lib/tools.jar</tools.jar>
  </properties></profile><profile>
  <id>default-tools.jar-mac</id>
  <activation>
    <file>
      <exists>${java.home}/../Classes/classes.jar</exists>
    </file>
  </activation>
  <properties>
    <tools.jar>${java.home}/../Classes/classes.jar</tools.jar>
  </properties></profile>


Question: why ${java.home}/../lib?

Shouldn't it be just ${java.home}/lib?

Best wishes,
Alexey