ektfetna1 / gdata-java-client

Automatically exported from code.google.com/p/gdata-java-client
1 stars 0 forks source link

glassfish-embedded arquillian tests caught build failure when including gdata-core1.47.1 dependency #446

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
But if we are using the following dependencies the the arquillian test gets 
build success, But spreadsheet service is not working when we write the data 
into spreadsheet cell.
        <dependency>
            <groupId>com.google.gdata</groupId>
            <artifactId>gdata-core</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>com.google.gdata</groupId>
            <artifactId>gdata-client</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>com.google.gdata</groupId>
            <artifactId>gdata-spreadsheet</artifactId>
            <version>3.0</version>
        </dependency>

But, Adding the latest version the functionality is working that is we can 
write into spreadsheet cell. But test cause failed
        <dependency>
            <groupId>com.google.gdata</groupId>
            <artifactId>core</artifactId>
            <version>1.47.1</version>
            <type>jar</type>
        </dependency>

Original issue reported on code.google.com by dinamca...@gmail.com on 14 Aug 2014 at 7:27