3200.0.0-rel.49 Maven library posted 5/3 - What is equivalent Q? 201? CU?
3200.0.0-rel.49 Maven library posted 5/3 - What is equivalent Q? 201? CU?
Chris Filkins Hi!
I have this code declared on my pom, since the 3200 it's the 2017 that you guys mentioned.
<dependency>
<groupId>blackboard.platform</groupId>
<artifactId>bb-platform</artifactId>
<version>3200.0.0-rel.49</version>
<scope>provided</scope>
</dependency>
</dependencies>
I created a ContentDbLoader and i'm trying to access this method:
java.util.List<Content> | loadAvailableContentsByCourseId(Id courseId, Id userId, boolean heavy, boolean includingPartialAvailableContents) Loads all course content, honoring availability settings as determined for the specified user. |
but it's not working (Cannot resolve method)
What am i missing? Thanks for your help!
Are you getting the error in Learn, or in your IDE? I'm in Spring Tool Suite, and I just updated my POM to use the latest version info, as you cited...
ContentDbLoader cdl = ContentDbLoader.Default.getInstance();
Context ctx = ContextManagerFactory.getInstance().getContext();
Id courseId = ctx.getCourseId();
Id userId = ctx.getUserId();
List<Content> contents = cdl.loadAvailableContentsByCourseId(courseId, userId, true, true);
Eclipse seems to find the method without issue.
Hi,
using this maven configuration: <repository>
<id>blackboard.platform</id>
<name>blackboard.platform</name>
<url>https://bbprepo.blackboard.com/content/repositories/releases/blackboard/platform/bb-platform/3200.0.0-rel.49/</url>
</repository>
<dependency>
<groupId>blackboard.platform</groupId>
<artifactId>bb-platform</artifactId>
<version>3200.0.0-rel.49</version>
<scope>provided</scope>
</dependency>
Still not working on my ide.
3200 => Q2 2017...there are no CU's yet