[Building Sakai] BUILD_Error_GradingService

Gautham gautham at sankhya.net
Fri Feb 11 21:43:47 PST 2011



Hi Aaron/all,

I have used the sakai App builder to create new tool.

I have added the below lines in Project's main pom.xml with version also
since the Build asked for the Version: 

<dependency>
     <groupId>org.sakaiproject.samigo</groupId>
     <artifactId>samigo-services</artifactId>
     <version>2.6.0</version>
 </dependency>

Now it is showing the attached Error.

Any help will be highly appreciated.

Regards,
Gautam
http://old.nabble.com/file/p30907262/BUILD_Error_GradingService.docx
BUILD_Error_GradingService.docx 

==================================================================


	
GradingService not found while adding in new tool code
Click to flag this post

by Gautham Feb 11, 2011; 06:31pm :: Rate this Message: - Use ratings to
moderate (?)

Reply | Edit | Delete | Print | View Threaded | Show Only this Message
This message was accepted by the sakai-dev at collab.sakaiproject.org mailing
list.

Hi Steve,

Please find the attached java class from New tool where I have added the
grading service as in
'https://confluence.sakaiproject.org/display/BOOT/Using+the+UserDirectoryService"

I have added the below code in attached "ExternalLogicImpl.java"

import org.sakaiproject.tool.assessment.services.GradingService;

///Grading Service
       
        private GradingService gradingService;
        public void setGradingService(GradingService gradingService) {
                this.gradingService = gradingService;
        }
       
        //Grading Service


I have added the below code in attached "components.xml"

<property name="GradingService"
ref="org.sakaiproject.tool.assessment.services.GradingService" />

Does i need to add any of the grading api's to get Build success. Attached
is build Error

Any help is highly appreciated.

Regards,
Gautham
ExternalLogicImpl.javacomponents.xmlBUILD_Error_GradingService.docx

	
Re: [Building Sakai] GradingService not found while adding in new tool code
Click to flag this post

by David Horwitz Feb 11, 2011; 06:35pm :: Rate this Message: - Use ratings
to moderate (?)

Reply | Print | View Threaded | Show Only this Message
Gautham,

You need to add the gradebook API's to your tools pom.xml file:

<dependency>
      <groupId>org.sakaiproject.edu-services.gradebook</groupId>
      <artifactId>gradebook-service-api</artifactId>
    </dependency>

David

On 02/11/2011 03:01 PM, Gautham wrote:

>
> Hi Steve,
>
> Please find the attached java class from New tool where I have added the
> grading service as in
> 'https://confluence.sakaiproject.org/display/BOOT/Using+the+UserDirectoryService"
>
> I have added the below code in attached "ExternalLogicImpl.java"
>
> import org.sakaiproject.tool.assessment.services.GradingService;
>
> ///Grading Service
>
> private GradingService gradingService;
> public void setGradingService(GradingService gradingService) {
> this.gradingService = gradingService;
> }
>
> //Grading Service
>
>
> I have added the below code in attached "components.xml"
>
> <property name="GradingService"
> ref="org.sakaiproject.tool.assessment.services.GradingService" />
>
> Does i need to add any of the grading api's to get Build success. Attached
> is build Error
>
> Any help is highly appreciated.
>
> Regards,
> Gautham
> http://old.nabble.com/file/p30901062/ExternalLogicImpl.java
> ExternalLogicImpl.java 
> http://old.nabble.com/file/p30901062/components.xml
> components.xml
> http://old.nabble.com/file/p30901062/BUILD_Error_GradingService.docx
> BUILD_Error_GradingService.docx
>  
... [show rest of quote]
_______________________________________________
sakai-dev mailing list
sakai-dev at ...
http://collab.sakaiproject.org/mailman/listinfo/sakai-dev

TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ... with a subject of
"unsubscribe"

	
Re: [Building Sakai] GradingService not found while adding in new tool code
Click to flag this post

by Gautham Feb 11, 2011; 06:56pm :: Rate this Message: - Use ratings to
moderate (?)

Reply | Edit | Delete | Print | View Threaded | Show Only this Message
This message was accepted by the sakai-dev at collab.sakaiproject.org mailing
list.

Hi david,

I got the attached Pom build Error when I added these dependency tags: line
to tools pom file:

I am using a New tool developed by Sakai App Builder.

Any help to resolve will be highly appreciated.

regards,
Gautham
POM_Error-grading.docx

    David Horwitz wrote:
    Gautham,

    You need to add the gradebook API's to your tools pom.xml file:

    <dependency>
          <groupId>org.sakaiproject.edu-services.gradebook</groupId>
          <artifactId>gradebook-service-api</artifactId>
        </dependency>

    David

    On 02/11/2011 03:01 PM, Gautham wrote:
    >
    > Hi Steve,
    >
    > Please find the attached java class from New tool where I have added
the
    > grading service as in
    >
'https://confluence.sakaiproject.org/display/BOOT/Using+the+UserDirectoryService"
    >
    > I have added the below code in attached "ExternalLogicImpl.java"
    >
    > import org.sakaiproject.tool.assessment.services.GradingService;
    >
    > ///Grading Service
    >
    > private GradingService gradingService;
    > public void setGradingService(GradingService gradingService) {
    > this.gradingService = gradingService;
    > }
    >
    > //Grading Service
    >
    >
    > I have added the below code in attached "components.xml"
    >
    > <property name="GradingService"
    > ref="org.sakaiproject.tool.assessment.services.GradingService" />
    >
    > Does i need to add any of the grading api's to get Build success.
Attached
    > is build Error
    >
    > Any help is highly appreciated.
    >
    > Regards,
    > Gautham
    > http://old.nabble.com/file/p30901062/ExternalLogicImpl.java
    > ExternalLogicImpl.java 
http://old.nabble.com/file/p30901062/components.xml
    > components.xml
    > http://old.nabble.com/file/p30901062/BUILD_Error_GradingService.docx
    > BUILD_Error_GradingService.docx
    >  
    _______________________________________________
    sakai-dev mailing list
    sakai-dev at collab.sakaiproject.org
    http://collab.sakaiproject.org/mailman/listinfo/sakai-dev

    TO UNSUBSCRIBE: send email to
sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of
"unsubscribe"
    ... [show rest of quote]


	
Re: [Building Sakai] GradingService not found while adding in new tool code
Click to flag this post

by Karen Tsao Feb 12, 2011; 12:26am :: Rate this Message: - Use ratings to
moderate (?)

Reply | Print | View Threaded | Show Only this Message
Hi Gautham,

Can you try to include this?

<dependency>
     <groupId>org.sakaiproject.samigo</groupId>
     <artifactId>samigo-services<</artifactId>
 </dependency>

Thanks,
Karen


On Fri, Feb 11, 2011 at 5:26 AM, Gautham <gautham at ...> wrote:



    Hi david,

    I got the attached Pom build Error when I added these dependency tags:
line
    to tools pom file:

    I am using a New tool developed by Sakai App Builder.

    Any help to resolve will be highly appreciated.

    regards,
    Gautham
    http://old.nabble.com/file/p30901205/POM_Error-grading.docx
    POM_Error-grading.docx


    David Horwitz wrote:
    >
    > Gautham,
    >
    > You need to add the gradebook API's to your tools pom.xml file:
    >
    > <dependency>
    >       <groupId>org.sakaiproject.edu-services.gradebook</groupId>
    >       <artifactId>gradebook-service-api</artifactId>
    >     </dependency>
    >
    > David
    >
    > On 02/11/2011 03:01 PM, Gautham wrote:
    >>
    >> Hi Steve,
    >>
    >> Please find the attached java class from New tool where I have added
the
    >> grading service as in
    >>
'https://confluence.sakaiproject.org/display/BOOT/Using+the+UserDirectoryService"
    >>
    >> I have added the below code in attached "ExternalLogicImpl.java"
    >>
    >> import org.sakaiproject.tool.assessment.services.GradingService;
    >>
    >> ///Grading Service
    >>
    >>      private GradingService gradingService;
    >>      public void setGradingService(GradingService gradingService) {
    >>              this.gradingService = gradingService;
    >>      }
    >>
    >>      //Grading Service
    >>
    >>
    >> I have added the below code in attached "components.xml"
    >>
    >> <property name="GradingService"
    >> ref="org.sakaiproject.tool.assessment.services.GradingService" />
    >>
    >> Does i need to add any of the grading api's to get Build success.
    >> Attached
    >> is build Error
    >>
    >> Any help is highly appreciated.
    >>
    >> Regards,
    >> Gautham
    >> http://old.nabble.com/file/p30901062/ExternalLogicImpl.java
    >> ExternalLogicImpl.java
    >> http://old.nabble.com/file/p30901062/components.xml
    >> components.xml
    >> http://old.nabble.com/file/p30901062/BUILD_Error_GradingService.docx
    >> BUILD_Error_GradingService.docx
    >>
    > _______________________________________________
    > sakai-dev mailing list
    > sakai-dev at ...
    > http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
    >
    > TO UNSUBSCRIBE: send email to
    > sakai-dev-unsubscribe at ... with a subject of
    > "unsubscribe"
    >
    >

    --
    View this message in context:
http://old.nabble.com/GradingService-not-found-while-adding-in-new-tool-code-tp30901062p30901205.html
    Sent from the Sakai - Development mailing list archive at Nabble.com.

    _______________________________________________
    sakai-dev mailing list
    sakai-dev at ...
    http://collab.sakaiproject.org/mailman/listinfo/sakai-dev

    TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ... with a subject
of "unsubscribe"



_______________________________________________
sakai-dev mailing list
sakai-dev at ...
http://collab.sakaiproject.org/mailman/listinfo/sakai-dev

TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ... with a subject of
"unsubscribe"

	
Re: [Building Sakai] GradingService not found while adding in new tool code
Click to flag this post

by Aaron Zeckoski-3 Feb 12, 2011; 12:36am :: Rate this Message: - Use
ratings to moderate (?)

Reply | Print | View Threaded | Show Only this Message
Watch out for the double <<

<</artifactId>

Should be:
<dependency>
     <groupId>org.sakaiproject.samigo</groupId>
     <artifactId>samigo-services</artifactId>
 </dependency>

-AZ


On Fri, Feb 11, 2011 at 1:56 PM, Karen Tsao <ktsao at ...> wrote:

> Hi Gautham,
>
> Can you try to include this?
>
> <dependency>
>      <groupId>org.sakaiproject.samigo</groupId>
>      <artifactId>samigo-services<</artifactId>
>  </dependency>
>
> Thanks,
> Karen
>
>
> On Fri, Feb 11, 2011 at 5:26 AM, Gautham <gautham at ...> wrote:
>>
>>
>> Hi david,
>>
>> I got the attached Pom build Error when I added these dependency tags:
>> line
>> to tools pom file:
>>
>> I am using a New tool developed by Sakai App Builder.
>>
>> Any help to resolve will be highly appreciated.
>>
>> regards,
>> Gautham
>> http://old.nabble.com/file/p30901205/POM_Error-grading.docx
>> POM_Error-grading.docx
>>
>>
>> David Horwitz wrote:
>> >
>> > Gautham,
>> >
>> > You need to add the gradebook API's to your tools pom.xml file:
>> >
>> > <dependency>
>> >       <groupId>org.sakaiproject.edu-services.gradebook</groupId>
>> >       <artifactId>gradebook-service-api</artifactId>
>> >     </dependency>
>> >
>> > David
>> >
>> > On 02/11/2011 03:01 PM, Gautham wrote:
>> >>
>> >> Hi Steve,
>> >>
>> >> Please find the attached java class from New tool where I have added
>> >> the
>> >> grading service as in
>> >>
>> >>
>> 'https://confluence.sakaiproject.org/display/BOOT/Using+the+UserDirectoryService"
>> >>
>> >> I have added the below code in attached "ExternalLogicImpl.java"
>> >>
>> >> import org.sakaiproject.tool.assessment.services.GradingService;
>> >>
>> >> ///Grading Service
>> >>
>> >>      private GradingService gradingService;
>> >>      public void setGradingService(GradingService gradingService) {
>> >>              this.gradingService = gradingService;
>> >>      }
>> >>
>> >>      //Grading Service
>> >>
>> >>
>> >> I have added the below code in attached "components.xml"
>> >>
>> >> <property name="GradingService"
>> >> ref="org.sakaiproject.tool.assessment.services.GradingService" />
>> >>
>> >> Does i need to add any of the grading api's to get Build success.
>> >> Attached
>> >> is build Error
>> >>
>> >> Any help is highly appreciated.
>> >>
>> >> Regards,
>> >> Gautham
>> >> http://old.nabble.com/file/p30901062/ExternalLogicImpl.java
>> >> ExternalLogicImpl.java
>> >> http://old.nabble.com/file/p30901062/components.xml
>> >> components.xml
>> >> http://old.nabble.com/file/p30901062/BUILD_Error_GradingService.docx
>> >> BUILD_Error_GradingService.docx
>> >>
>> > _______________________________________________
>> > sakai-dev mailing list
>> > sakai-dev at ...
>> > http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>> >
>> > TO UNSUBSCRIBE: send email to
>> > sakai-dev-unsubscribe at ... with a subject of
>> > "unsubscribe"
>> >
>> >
>>
>> --
>> View this message in context:
>> http://old.nabble.com/GradingService-not-found-while-adding-in-new-tool-code-tp30901062p30901205.html
>> Sent from the Sakai - Development mailing list archive at Nabble.com.
>>
>> _______________________________________________
>> sakai-dev mailing list
>> sakai-dev at ...
>> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>>
>> TO UNSUBSCRIBE: send email to
>> sakai-dev-unsubscribe at ... with a subject of
>> "unsubscribe"
>
>
> _______________________________________________
> sakai-dev mailing list
> sakai-dev at ...
> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>
> TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ...
> with a subject of "unsubscribe"
>
... [show rest of quote]



-- 
Aaron Zeckoski - Software Engineer - http://tinyurl.com/azprofile
_______________________________________________
sakai-dev mailing list
sakai-dev at ...
http://collab.sakaiproject.org/mailman/listinfo/sakai-dev

TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ... with a subject of
"unsubscribe"

	
[Building Sakai] siteGroups not returned in Entity Broker Site:group
Click to flag this post

by Geng, Kelly Feb 12, 2011; 01:06am :: Rate this Message: - Use ratings to
moderate (?)

Reply | Print | View Threaded | Show Only this Message
Hi Aaron,

I'm trying to get group data within a site using "site" entity provider. I
expected to see value set to siteGroups, but only see Null as the result.
Can you shed me some light on that?

The URL is https://myserver/direct/site/{siteid}/site/group and I'm testing
it with a site course with 2 sections(groups).

Thanks,
Kelly

-----Original Message-----
From: sakai-dev-bounces at ... [mailto:sakai-dev-bounces at ...] On Behalf Of
Aaron Zeckoski
Sent: Friday, February 11, 2011 2:06 PM
To: Karen Tsao
Cc: Gautham; sakai-dev at ...
Subject: Re: [Building Sakai] GradingService not found while adding in new
tool code

Watch out for the double <<

<</artifactId>

Should be:
<dependency>
     <groupId>org.sakaiproject.samigo</groupId>
     <artifactId>samigo-services</artifactId>
 </dependency>

-AZ


On Fri, Feb 11, 2011 at 1:56 PM, Karen Tsao <ktsao at ...> wrote:

> Hi Gautham,
>
> Can you try to include this?
>
> <dependency>
>      <groupId>org.sakaiproject.samigo</groupId>
>      <artifactId>samigo-services<</artifactId>
>  </dependency>
>
> Thanks,
> Karen
>
>
> On Fri, Feb 11, 2011 at 5:26 AM, Gautham <gautham at ...> wrote:
>>
>>
>> Hi david,
>>
>> I got the attached Pom build Error when I added these dependency tags:
>> line
>> to tools pom file:
>>
>> I am using a New tool developed by Sakai App Builder.
>>
>> Any help to resolve will be highly appreciated.
>>
>> regards,
>> Gautham
>> http://old.nabble.com/file/p30901205/POM_Error-grading.docx
>> POM_Error-grading.docx
>>
>>
>> David Horwitz wrote:
>> >
>> > Gautham,
>> >
>> > You need to add the gradebook API's to your tools pom.xml file:
>> >
>> > <dependency>
>> >       <groupId>org.sakaiproject.edu-services.gradebook</groupId>
>> >       <artifactId>gradebook-service-api</artifactId>
>> >     </dependency>
>> >
>> > David
>> >
>> > On 02/11/2011 03:01 PM, Gautham wrote:
>> >>
>> >> Hi Steve,
>> >>
>> >> Please find the attached java class from New tool where I have added
>> >> the
>> >> grading service as in
>> >>
>> >>
>> 'https://confluence.sakaiproject.org/display/BOOT/Using+the+UserDirectoryService"
>> >>
>> >> I have added the below code in attached "ExternalLogicImpl.java"
>> >>
>> >> import org.sakaiproject.tool.assessment.services.GradingService;
>> >>
>> >> ///Grading Service
>> >>
>> >>      private GradingService gradingService;
>> >>      public void setGradingService(GradingService gradingService) {
>> >>              this.gradingService = gradingService;
>> >>      }
>> >>
>> >>      //Grading Service
>> >>
>> >>
>> >> I have added the below code in attached "components.xml"
>> >>
>> >> <property name="GradingService"
>> >> ref="org.sakaiproject.tool.assessment.services.GradingService" />
>> >>
>> >> Does i need to add any of the grading api's to get Build success.
>> >> Attached
>> >> is build Error
>> >>
>> >> Any help is highly appreciated.
>> >>
>> >> Regards,
>> >> Gautham
>> >> http://old.nabble.com/file/p30901062/ExternalLogicImpl.java
>> >> ExternalLogicImpl.java
>> >> http://old.nabble.com/file/p30901062/components.xml
>> >> components.xml
>> >> http://old.nabble.com/file/p30901062/BUILD_Error_GradingService.docx
>> >> BUILD_Error_GradingService.docx
>> >>
>> > _______________________________________________
>> > sakai-dev mailing list
>> > sakai-dev at ...
>> > http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>> >
>> > TO UNSUBSCRIBE: send email to
>> > sakai-dev-unsubscribe at ... with a subject of
>> > "unsubscribe"
>> >
>> >
>>
>> --
>> View this message in context:
>> http://old.nabble.com/GradingService-not-found-while-adding-in-new-tool-code-tp30901062p30901205.html
>> Sent from the Sakai - Development mailing list archive at Nabble.com.
>>
>> _______________________________________________
>> sakai-dev mailing list
>> sakai-dev at ...
>> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>>
>> TO UNSUBSCRIBE: send email to
>> sakai-dev-unsubscribe at ... with a subject of
>> "unsubscribe"
>
>
> _______________________________________________
> sakai-dev mailing list
> sakai-dev at ...
> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>
> TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ...
> with a subject of "unsubscribe"
>
... [show rest of quote]



-- 
Aaron Zeckoski - Software Engineer - http://tinyurl.com/azprofile
_______________________________________________
sakai-dev mailing list
sakai-dev at ...
http://collab.sakaiproject.org/mailman/listinfo/sakai-dev

TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at ... with a subject of
"unsubscribe"
_______________________________________________
sakai-dev mailing list 
-- 
View this message in context: http://old.nabble.com/BUILD_Error_GradingService-tp30907262p30907262.html
Sent from the Sakai - Development mailing list archive at Nabble.com.



More information about the sakai-dev mailing list