Thanks, i've fixed the hyphen. You can download the jar manually here
http://sourceforge.net/projects/fb-contrib/files/Current/fb-contrib-4.6.1.jar/download
This url (http://master.dl.sourceforge.net/project/fb-contrib/repo)
is for when you are pulling jars through maven such as when you execute
mvn install
and have a pom.xml file such as
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mebigfatguy</groupId>
<artifactId>test</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Test</name>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<id>fb</id>
<name>fb</name>
<url>http://master.dl.sourceforge.net/project/fb-contrib/repo</url>
<layout>default</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.mebigfatguy</groupId>
<artifactId>fb-contrib</artifactId>
<version>4.6.1</version>
</dependency>
</dependencies>
</project>
On 06/12/2011 09:50 AM, Jean-Noël Rouvignac wrote:
> Hi Dave,
>
> I had a look at http://fb-contrib.sourceforge.net/repository.html.
> I am afraid there is no such HTML entity as "‐"
> I think you can directly use a dash "-" in this case.
>
> References:
>
> * http://www.w3schools.com/tags/ref_entities.asp
> * http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references
>
>
>
> Moreover, I tried to follow the link
> http://master.dl.sourceforge.net/project/fb-contrib/repo , but it does
> not bring anywhere as no page can be found there.
>
> Cheers,
> Jean-Noel
>
>
> ------------------------------------------------------------------------------
> EditLive Enterprise is the world's most technically advanced content
> authoring tool. Experience the power of Track Changes, Inline Image
> Editing and ensure content is compliant with Accessibility Checking.
> http://p.sf.net/sfu/ephox-dev2dev
>
>
> _______________________________________________
> Fb-contrib-discuss mailing list
> Fb-...@li...
> https://lists.sourceforge.net/lists/listinfo/fb-contrib-discuss
|